File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
9393def 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)
You can’t perform that action at this time.
0 commit comments