diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-10-15 00:32:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-15 00:32:11 +0800 |
commit | 81b01f1c2bba8340f9cf2bf1da8ef131e3decd50 (patch) | |
tree | 0b2269cb3dfa9719cf3bf7a828c49b0c1ffccab8 /params/protocol_params.go | |
parent | a4d9e63d12c80a14294c0d085de6bf711ceec779 (diff) | |
parent | 64af2aafdaf16d0bab4c2b89573324b076602bab (diff) | |
download | dexon-81b01f1c2bba8340f9cf2bf1da8ef131e3decd50.tar dexon-81b01f1c2bba8340f9cf2bf1da8ef131e3decd50.tar.gz dexon-81b01f1c2bba8340f9cf2bf1da8ef131e3decd50.tar.bz2 dexon-81b01f1c2bba8340f9cf2bf1da8ef131e3decd50.tar.lz dexon-81b01f1c2bba8340f9cf2bf1da8ef131e3decd50.tar.xz dexon-81b01f1c2bba8340f9cf2bf1da8ef131e3decd50.tar.zst dexon-81b01f1c2bba8340f9cf2bf1da8ef131e3decd50.zip |
Merge pull request #3111 from obscuren/gas-price-fork
core, core/vm: added gas price variance table (EIP #150)
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. + ) |