diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-10-08 06:23:45 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-10-15 00:09:17 +0800 |
commit | 64af2aafdaf16d0bab4c2b89573324b076602bab (patch) | |
tree | fb8f5d30ce7ff12ee8f56c3621254edea55885be /params/protocol_params.go | |
parent | eeb2a1a6e3c7a0c77ee6836f3103708cff4102ad (diff) | |
download | go-tangerine-64af2aafdaf16d0bab4c2b89573324b076602bab.tar go-tangerine-64af2aafdaf16d0bab4c2b89573324b076602bab.tar.gz go-tangerine-64af2aafdaf16d0bab4c2b89573324b076602bab.tar.bz2 go-tangerine-64af2aafdaf16d0bab4c2b89573324b076602bab.tar.lz go-tangerine-64af2aafdaf16d0bab4c2b89573324b076602bab.tar.xz go-tangerine-64af2aafdaf16d0bab4c2b89573324b076602bab.tar.zst go-tangerine-64af2aafdaf16d0bab4c2b89573324b076602bab.zip |
core, core/vm: added gas price variance table
This implements 1b & 1c of EIP150 by adding a new GasTable which must be
returned from the RuleSet config method. This table is used to determine
the gas prices for the current epoch.
Please note that when the CreateBySuicide gas price is set it is assumed
that we're in the new epoch phase.
In addition this PR will serve as temporary basis while refactorisation
in being done in the EVM64 PR, which will substentially overhaul the gas
price code.
Diffstat (limited to 'params/protocol_params.go')
-rw-r--r-- | params/protocol_params.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/params/protocol_params.go b/params/protocol_params.go index 2dfc251b6..5079eb111 100644 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -71,4 +71,5 @@ var ( SuicideRefundGas = big.NewInt(24000) // Refunded following a suicide operation. MemoryGas = big.NewInt(3) // Times the address of the (highest referenced byte in memory + 1). NOTE: referencing happens on read, write and in instructions such as RETURN and CALL. TxDataNonZeroGas = big.NewInt(68) // Per byte of data attached to a transaction that is not equal to zero. NOTE: Not payable on data of calls between transactions. + ) |