EIP4844: fix a minor typo

This commit is contained in:
terence tsao 2022-03-20 08:20:08 -07:00 committed by GitHub
parent cc347c6ff4
commit 36b0044569
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ def verify_blobs_sidecar(slot: Slot, beacon_block_root: Root,
assert slot == blobs_sidecar.beacon_block_slot
assert beacon_block_root == blobs_sidecar.beacon_block_root
blobs = blobs_sidecar.blobs
assert len(kzgs) == len(blobs)
assert len(expected_kzgs) == len(blobs)
for kzg, blob in zip(expected_kzgs, blobs):
assert blob_to_kzg(blob) == kzg
```