Skip to content

Commit

Permalink
Update fork-choice.md
Browse files Browse the repository at this point in the history
Stylistic change to be in line with validations in other specifications
  • Loading branch information
ralexstokes authored May 15, 2023
1 parent f7352d1 commit 5a6052f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions specs/deneb/fork-choice.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ This is the modification of the fork choice accompanying the Deneb upgrade.
def validate_blobs(expected_kzg_commitments: Sequence[KZGCommitment],
blobs: Sequence[Blob],
proofs: Sequence[KZGProof]) -> None:
assert len(expected_kzg_commitments) == len(blobs)
assert len(blobs) == len(proofs)

assert len(expected_kzg_commitments) == len(blobs) == len(proofs)

assert verify_blob_kzg_proof_batch(blobs, expected_kzg_commitments, proofs)
```

Expand Down

0 comments on commit 5a6052f

Please sign in to comment.