Skip to content

Commit 2ceb0fd

Browse files
committed
Fix some nits
1 parent 3196487 commit 2ceb0fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specs/_features/eip7594/p2p-interface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def verify_data_column_sidecar(sidecar: DataColumnSidecar) -> bool:
8080
if len(sidecar.kzg_commitments) == 0:
8181
return False
8282

83-
# There should be an equal number of cells/commitments/proofs
83+
# The column length must be equal to the number of commitments/proofs
8484
if len(sidecar.column) != len(sidecar.kzg_commitments) or len(sidecar.column) != len(sidecar.kzg_proofs):
8585
return False
8686

@@ -92,7 +92,7 @@ def verify_data_column_sidecar(sidecar: DataColumnSidecar) -> bool:
9292
```python
9393
def verify_data_column_sidecar_kzg_proofs(sidecar: DataColumnSidecar) -> bool:
9494
"""
95-
Verify if the proofs are correct.
95+
Verify if the KZG proofs are correct.
9696
"""
9797
# The column index also represents the cell index
9898
cell_indices = [CellIndex(sidecar.index)] * len(sidecar.column)

0 commit comments

Comments
 (0)