Skip to content

Commit 6679860

Browse files
committed
Minor fixes based on review
1 parent 87f2ad2 commit 6679860

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -412,9 +412,9 @@ def compute_cells(blob: Blob) -> Vector[Cell, CELLS_PER_BLOB]:
412412

413413
```python
414414
def verify_cell_proof(commitment_bytes: Bytes48,
415-
cell_id: uint64,
415+
cell_id: CellID,
416416
cell_bytes: Vector[Bytes32, FIELD_ELEMENTS_PER_CELL],
417-
proof: Bytes48) -> bool:
417+
proof_bytes: Bytes48) -> bool:
418418
"""
419419
Check a cell proof
420420
@@ -426,7 +426,7 @@ def verify_cell_proof(commitment_bytes: Bytes48,
426426
bytes_to_kzg_commitment(commitment_bytes),
427427
coset,
428428
bytes_to_cell(cell_bytes),
429-
bytes_to_kzg_proof(proof))
429+
bytes_to_kzg_proof(proof_bytes))
430430
```
431431

432432
#### `verify_cell_proof_batch`

0 commit comments

Comments
 (0)