mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 22:26:42 +00:00
params: fix 7934 size limit.
This commit is contained in:
parent
517f8fa6db
commit
7754e773a9
1 changed files with 1 additions and 1 deletions
|
|
@ -180,7 +180,7 @@ const (
|
||||||
HistoryServeWindow = 8192 // Number of blocks to serve historical block hashes for, EIP-2935.
|
HistoryServeWindow = 8192 // Number of blocks to serve historical block hashes for, EIP-2935.
|
||||||
|
|
||||||
WithdrawalSize = 23 // size of a withdrawal
|
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
|
// Bls12381G1MultiExpDiscountTable is the gas discount table for BLS12-381 G1 multi exponentiation operation
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue