Skip to content

Commit b4d418d

Browse files
committed
Remove some trailing whitespace
1 parent 90d48e5 commit b4d418d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def interpolate_polynomialcoeff(xs: Sequence[BLSFieldElement], ys: Sequence[BLSF
242242
summand, [(- int(weight_adjustment) * int(xs[j])) % BLS_MODULUS, weight_adjustment]
243243
)
244244
r = add_polynomialcoeff(r, summand)
245-
245+
246246
return r
247247
```
248248

@@ -385,7 +385,7 @@ def compute_cells(blob: Blob) -> Vector[Cell, CELLS_PER_BLOB]:
385385
polynomial = blob_to_polynomial(blob)
386386
polynomial_coeff = polynomial_eval_to_coeff(polynomial)
387387

388-
extended_data = fft_field(polynomial_coeff + [0] * FIELD_ELEMENTS_PER_BLOB,
388+
extended_data = fft_field(polynomial_coeff + [0] * FIELD_ELEMENTS_PER_BLOB,
389389
compute_roots_of_unity(2 * FIELD_ELEMENTS_PER_BLOB))
390390
extended_data_rbo = bit_reversal_permutation(extended_data)
391391
return [extended_data_rbo[i * FIELD_ELEMENTS_PER_CELL:(i + 1) * FIELD_ELEMENTS_PER_CELL]
@@ -504,7 +504,7 @@ def recover_polynomial(cell_ids: Sequence[CellID], cells: Sequence[Cell]) -> Pol
504504

505505
eval_shifted_extended_evaluation = fft_field(shifted_extended_evaluation, roots_of_unity_extended)
506506
eval_shifted_zero_poly = fft_field(shifted_zero_poly, roots_of_unity_extended)
507-
507+
508508
eval_shifted_reconstructed_poly = [
509509
div(a, b)
510510
for a, b in zip(eval_shifted_extended_evaluation, eval_shifted_zero_poly)

specs/deneb/polynomial-commitments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ def verify_blob_kzg_proof_batch(blobs: Sequence[Blob],
578578
"""
579579

580580
assert len(blobs) == len(commitments_bytes) == len(proofs_bytes)
581-
581+
582582
commitments, evaluation_challenges, ys, proofs = [], [], [], []
583583
for blob, commitment_bytes, proof_bytes in zip(blobs, commitments_bytes, proofs_bytes):
584584
assert len(blob) == BYTES_PER_BLOB

0 commit comments

Comments
 (0)