From 534e4f81276b8346d785ed9aba12c4c74b927ec6 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Fri, 25 Aug 2023 06:38:48 +1000 Subject: [PATCH] Use `MAX_BLOB_COMMITMENTS_PER_BLOCK` as max length for BlindedBlobsBundle SSZ lists (#87) --- specs/deneb/builder.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specs/deneb/builder.md b/specs/deneb/builder.md index cfb000a..bb89527 100644 --- a/specs/deneb/builder.md +++ b/specs/deneb/builder.md @@ -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`