mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
Allow up to 128 bytes in block extraData
This commit is contained in:
parent
7d3f06b982
commit
26d69d69c5
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ package params
|
||||||
import "math/big"
|
import "math/big"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
MaximumExtraDataSize = big.NewInt(32) // Maximum size extra data may be after Genesis.
|
MaximumExtraDataSize = big.NewInt(128) // Maximum size extra data may be after Genesis.
|
||||||
ExpByteGas = big.NewInt(10) // Times ceil(log256(exponent)) for the EXP instruction.
|
ExpByteGas = big.NewInt(10) // Times ceil(log256(exponent)) for the EXP instruction.
|
||||||
SloadGas = big.NewInt(50) // Multiplied by the number of 32-byte words that are copied (round up) for any *COPY operation and added.
|
SloadGas = big.NewInt(50) // Multiplied by the number of 32-byte words that are copied (round up) for any *COPY operation and added.
|
||||||
CallValueTransferGas = big.NewInt(9000) // Paid for CALL when the value transfer is non-zero.
|
CallValueTransferGas = big.NewInt(9000) // Paid for CALL when the value transfer is non-zero.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue