Skip to content

Commit 04287eb

Browse files
authored
reestimate the gas consumption for system tx when there is 41 validators (ethereum#19)
1 parent f4816ee commit 04287eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

params/protocol_params.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const (
2929
CallValueTransferGas uint64 = 9000 // Paid for CALL when the value transfer is non-zero.
3030
CallNewAccountGas uint64 = 25000 // Paid for CALL when the destination address didn't exist prior.
3131
TxGas uint64 = 21000 // Per transaction not creating a contract. NOTE: Not payable on data of calls between transactions.
32-
SystemTxsGas uint64 = 100000 // The gas reserved for system txs; only for parlia consensus
32+
SystemTxsGas uint64 = 500000 // The gas reserved for system txs; only for parlia consensus
3333
TxGasContractCreation uint64 = 53000 // Per transaction that creates a contract. NOTE: Not payable on data of calls between transactions.
3434
TxDataZeroGas uint64 = 4 // Per byte of data attached to a transaction that equals zero. NOTE: Not payable on data of calls between transactions.
3535
QuadCoeffDiv uint64 = 512 // Divisor for the quadratic particle of the memory cost equation.

0 commit comments

Comments
 (0)