mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 07:37:20 +00:00
params: fix 7934 size limit.
This commit is contained in:
parent
18e79fdd7e
commit
9859e6d62a
1 changed files with 1 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ const (
|
|||
HistoryServeWindow = 8192 // Number of blocks to serve historical block hashes for, EIP-2935.
|
||||
|
||||
WithdrawalSize = 23 // size of a withdrawal
|
||||
BlockRLPSizeCap = 9_961_472 // maximum size of an RLP-encoded block
|
||||
BlockRLPSizeCap = 8_388_608 // maximum size of an RLP-encoded block
|
||||
)
|
||||
|
||||
// Bls12381G1MultiExpDiscountTable is the gas discount table for BLS12-381 G1 multi exponentiation operation
|
||||
|
|
|
|||
Loading…
Reference in a new issue