From 90afb238eddf37852813784544a7ddc923c637e6 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Wed, 14 Feb 2024 20:51:50 +0800 Subject: [PATCH] Update specs/_features/eip7594/polynomial-commitments-sampling.md --- .../_features/eip7594/polynomial-commitments-sampling.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/specs/_features/eip7594/polynomial-commitments-sampling.md b/specs/_features/eip7594/polynomial-commitments-sampling.md index 2b96716ad..9cd862589 100644 --- a/specs/_features/eip7594/polynomial-commitments-sampling.md +++ b/specs/_features/eip7594/polynomial-commitments-sampling.md @@ -613,8 +613,13 @@ def recover_polynomial(cell_ids: Sequence[CellID], missing_cell_ids = [cell_id for cell_id in range(CELLS_PER_BLOB) if cell_id not in cell_ids] zero_poly_coeff, zero_poly_eval, zero_poly_eval_brp = construct_vanishing_polynomial(missing_cell_ids) - eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv = \ - recover_shifted_data(cell_ids, cells, zero_poly_eval, zero_poly_coeff, roots_of_unity_extended) + eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv = recover_shifted_data( + cell_ids, + cells, + zero_poly_eval, + zero_poly_coeff, + roots_of_unity_extended, + ) reconstructed_data = recover_original_data( eval_shifted_extended_evaluation,