Skip to content

Commit

Permalink
Merge pull request ethereum#2857 from terencechain/patch-133
Browse files Browse the repository at this point in the history
EIP4844: fix a minor typo
  • Loading branch information
djrtwo authored Mar 21, 2022
2 parents cc347c6 + 36b0044 commit f5b5f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/eip4844/validator.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit f5b5f63

Please sign in to comment.