From 66798602dd448383361b026798ca734119200255 Mon Sep 17 00:00:00 2001 From: George Kadianakis Date: Wed, 17 Jan 2024 14:18:03 +0200 Subject: [PATCH] Minor fixes based on review --- specs/_features/eip7594/polynomial-commitments-sampling.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specs/_features/eip7594/polynomial-commitments-sampling.md b/specs/_features/eip7594/polynomial-commitments-sampling.md index 9f4584d34..f369becf2 100644 --- a/specs/_features/eip7594/polynomial-commitments-sampling.md +++ b/specs/_features/eip7594/polynomial-commitments-sampling.md @@ -412,9 +412,9 @@ def compute_cells(blob: Blob) -> Vector[Cell, CELLS_PER_BLOB]: ```python def verify_cell_proof(commitment_bytes: Bytes48, - cell_id: uint64, + cell_id: CellID, cell_bytes: Vector[Bytes32, FIELD_ELEMENTS_PER_CELL], - proof: Bytes48) -> bool: + proof_bytes: Bytes48) -> bool: """ Check a cell proof @@ -426,7 +426,7 @@ def verify_cell_proof(commitment_bytes: Bytes48, bytes_to_kzg_commitment(commitment_bytes), coset, bytes_to_cell(cell_bytes), - bytes_to_kzg_proof(proof)) + bytes_to_kzg_proof(proof_bytes)) ``` #### `verify_cell_proof_batch`