mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-26 08:26:20 +00:00
params: bump max code size as per EIP-7954 (#35217)
This commit is contained in:
parent
12241bde26
commit
38678ec516
1 changed files with 1 additions and 1 deletions
|
|
@ -139,7 +139,7 @@ const (
|
|||
|
||||
MaxCodeSize = 24576 // Maximum bytecode to permit for a contract
|
||||
MaxInitCodeSize = 2 * MaxCodeSize // Maximum initcode to permit in a creation transaction and create instructions
|
||||
MaxCodeSizeAmsterdam = 32768 // Maximum bytecode to permit for a contract post Amsterdam
|
||||
MaxCodeSizeAmsterdam = 65536 // Maximum bytecode to permit for a contract post Amsterdam
|
||||
MaxInitCodeSizeAmsterdam = 2 * MaxCodeSizeAmsterdam // Maximum initcode to permit in a creation transaction and create instructions post Amsterdam
|
||||
|
||||
// Precompiled contract gas prices
|
||||
|
|
|
|||
Loading…
Reference in a new issue