From 17dac8cab92d2982d7940966d0de40c5e3283828 Mon Sep 17 00:00:00 2001 From: gajinder Date: Tue, 25 Apr 2023 15:36:48 +0530 Subject: [PATCH] Update MAX_BLOBS_PER_BLOCK to a higher bound --- presets/mainnet/deneb.yaml | 4 ++-- specs/deneb/beacon-chain.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/presets/mainnet/deneb.yaml b/presets/mainnet/deneb.yaml index ebe33f2d1..7cf41bbf4 100644 --- a/presets/mainnet/deneb.yaml +++ b/presets/mainnet/deneb.yaml @@ -4,5 +4,5 @@ # --------------------------------------------------------------- # `uint64(4096)` FIELD_ELEMENTS_PER_BLOB: 4096 -# `uint64(2**2)` (= 4) -MAX_BLOBS_PER_BLOCK: 4 +# `uint64(2**10)` (= 1024) +MAX_BLOBS_PER_BLOCK: 1024 diff --git a/specs/deneb/beacon-chain.md b/specs/deneb/beacon-chain.md index 359c7fc95..a123f921b 100644 --- a/specs/deneb/beacon-chain.md +++ b/specs/deneb/beacon-chain.md @@ -68,7 +68,7 @@ This upgrade adds blobs to the beacon chain as part of Deneb. This is an extensi | Name | Value | | - | - | -| `MAX_BLOBS_PER_BLOCK` | `uint64(2**2)` (= 4) | +| `MAX_BLOBS_PER_BLOCK` | `uint64(2**10)` (= 1024) | ## Configuration