Skip to content

Commit

Permalink
Use MAX_BLOB_COMMITMENTS_PER_BLOCK as max length for BlindedBlobsBu…
Browse files Browse the repository at this point in the history
…ndle SSZ lists (#87)
  • Loading branch information
jimmygchen authored Aug 24, 2023
1 parent 07108b2 commit 534e4f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions specs/deneb/builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ This is the modification of the builder specification accompanying the Deneb upg

```python
class BlindedBlobsBundle(Container):
commitments: List[KZGCommitment, MAX_BLOBS_PER_BLOCK]
proofs: List[KZGProof, MAX_BLOBS_PER_BLOCK]
blob_roots: List[Root, MAX_BLOBS_PER_BLOCK]
commitments: List[KZGCommitment, MAX_BLOB_COMMITMENTS_PER_BLOCK]
proofs: List[KZGProof, MAX_BLOB_COMMITMENTS_PER_BLOCK]
blob_roots: List[Root, MAX_BLOB_COMMITMENTS_PER_BLOCK]
```

#### `BlindedBlobSidecar`
Expand Down

0 comments on commit 534e4f8

Please sign in to comment.