Skip to content

Commit 90afb23

Browse files
authored
Update specs/_features/eip7594/polynomial-commitments-sampling.md
1 parent 385b0f3 commit 90afb23

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

specs/_features/eip7594/polynomial-commitments-sampling.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,13 @@ def recover_polynomial(cell_ids: Sequence[CellID],
613613
missing_cell_ids = [cell_id for cell_id in range(CELLS_PER_BLOB) if cell_id not in cell_ids]
614614
zero_poly_coeff, zero_poly_eval, zero_poly_eval_brp = construct_vanishing_polynomial(missing_cell_ids)
615615

616-
eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv = \
617-
recover_shifted_data(cell_ids, cells, zero_poly_eval, zero_poly_coeff, roots_of_unity_extended)
616+
eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv = recover_shifted_data(
617+
cell_ids,
618+
cells,
619+
zero_poly_eval,
620+
zero_poly_coeff,
621+
roots_of_unity_extended,
622+
)
618623

619624
reconstructed_data = recover_original_data(
620625
eval_shifted_extended_evaluation,

0 commit comments

Comments
 (0)