diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-08-05 02:53:39 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-08-05 02:53:39 +0800 |
commit | 56219a5e7a9ed4762870a891bf962558ee846b74 (patch) | |
tree | e2bac06257d04188dcf34b18363756639176e01b /params/protocol_params.go | |
parent | b01f2c29ae48dba0ba4a90a4c6dbbadfc313f5b1 (diff) | |
parent | 26c6e3b206bcf95b6b042ab529522ab7f2bc6f08 (diff) | |
download | dexon-56219a5e7a9ed4762870a891bf962558ee846b74.tar dexon-56219a5e7a9ed4762870a891bf962558ee846b74.tar.gz dexon-56219a5e7a9ed4762870a891bf962558ee846b74.tar.bz2 dexon-56219a5e7a9ed4762870a891bf962558ee846b74.tar.lz dexon-56219a5e7a9ed4762870a891bf962558ee846b74.tar.xz dexon-56219a5e7a9ed4762870a891bf962558ee846b74.tar.zst dexon-56219a5e7a9ed4762870a891bf962558ee846b74.zip |
Merge pull request #1578 from Gustav-Simonsson/frontier_thawing
miner: gas limit strategy, target 3141592 & def gas price 50 Shannon
Diffstat (limited to 'params/protocol_params.go')
-rwxr-xr-x | params/protocol_params.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/params/protocol_params.go b/params/protocol_params.go index b1a6757b1..dcc17e05d 100755 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -39,8 +39,8 @@ var ( EcrecoverGas = big.NewInt(3000) // Sha256WordGas = big.NewInt(12) // - MinGasLimit = big.NewInt(5000) // Minimum the gas limit may ever be. - GenesisGasLimit = big.NewInt(5000) // Gas limit of the Genesis block. + MinGasLimit = big.NewInt(5000) // Minimum the gas limit may ever be. + GenesisGasLimit = big.NewInt(3141592) // Gas limit of the Genesis block. Sha3Gas = big.NewInt(30) // Once per SHA3 operation. Sha256Gas = big.NewInt(60) // |