We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ee280 commit 5699eedCopy full SHA for 5699eed
specs/_features/eip7594/p2p-interface.md
@@ -73,11 +73,13 @@ def verify_data_column_sidecar_kzg_proofs(sidecar: DataColumnSidecar) -> bool:
73
assert len(sidecar.column) == len(sidecar.kzg_commitments) == len(sidecar.kzg_proofs)
74
row_ids = [RowIndex(i) for i in range(len(sidecar.column))]
75
76
+ column_indices = [sidecar.index] * len(sidecar.column)
77
+
78
# KZG batch verifies that the cells match the corresponding commitments and proofs
79
return verify_cell_kzg_proof_batch(
80
row_commitments_bytes=sidecar.kzg_commitments,
81
row_indices=row_ids, # all rows
- column_indices=[sidecar.index],
82
+ column_indices=column_indices,
83
cells=sidecar.column,
84
proofs_bytes=sidecar.kzg_proofs,
85
)
0 commit comments