We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bb5933b + 44fe2ae commit 0c5cca2Copy full SHA for 0c5cca2
1 file changed
params/protocol_params.go
@@ -30,7 +30,7 @@ const (
30
MinerGasFloor uint64 = MinGasLimit
31
MinerGasCeil uint64 = 160000000
32
33
- MaxTxGas uint64 = 30_000_000 // Maximum transaction gas limit after eip-7825.
+ MaxTxGas uint64 = 1 << 24 // Maximum transaction gas limit after eip-7825 (16,777,216).
34
35
MaximumExtraDataSize uint64 = 32 // Maximum size extra data may be after Genesis.
36
ExpByteGas uint64 = 10 // Times ceil(log256(exponent)) for the EXP instruction.
0 commit comments