Remove unnecessary comment

This commit is contained in:
Justin Traglia 2024-07-15 15:09:01 -05:00 committed by GitHub
parent 8da90b2702
commit 5961e26931
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -201,9 +201,6 @@ def get_data_column_sidecars(signed_block: SignedBeaconBlock,
""" """
Given a signed block and the cells/proofs associated with each blob in the Given a signed block and the cells/proofs associated with each blob in the
block, assemble the sidecars which can be distributed to peers. block, assemble the sidecars which can be distributed to peers.
Since there is no method which converts cells to a blob, this method takes
cells/proofs instead of blobs so it can re-create sidecars after recovery.
""" """
blob_kzg_commitments = signed_block.message.body.blob_kzg_commitments blob_kzg_commitments = signed_block.message.body.blob_kzg_commitments
assert len(cells_and_kzg_proofs) == len(blob_kzg_commitments) assert len(cells_and_kzg_proofs) == len(blob_kzg_commitments)