From 26d69d69c5e44626254b1e920fb57659be1bad5c Mon Sep 17 00:00:00 2001 From: Luke Williams Date: Tue, 3 May 2016 16:16:34 +1000 Subject: [PATCH] Allow up to 128 bytes in block `extraData` --- params/protocol_params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/protocol_params.go b/params/protocol_params.go index 2dfc251b63..d6108501e9 100644 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -22,7 +22,7 @@ package params import "math/big" 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. 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.