mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-23 16:29:26 +00:00
params: fix 7934 size limit.
This commit is contained in:
parent
df12e79e83
commit
b326264d4b
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.
|
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