Update MAX_BLOBS_PER_BLOCK to a higher bound
This commit is contained in:
parent
696eac6127
commit
17dac8cab9
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue