diff options
author | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-08-03 08:46:34 +0800 |
---|---|---|
committer | Gustav Simonsson <gustav.simonsson@gmail.com> | 2015-08-04 21:20:28 +0800 |
commit | 26c6e3b206bcf95b6b042ab529522ab7f2bc6f08 (patch) | |
tree | 1eaa6d5e07c1286f2d432ed178666ba4f401e105 /params | |
parent | ff66e8fa2935d59d5104e324861d9e1bb517ffaa (diff) | |
download | dexon-26c6e3b206bcf95b6b042ab529522ab7f2bc6f08.tar.gz dexon-26c6e3b206bcf95b6b042ab529522ab7f2bc6f08.tar.zst dexon-26c6e3b206bcf95b6b042ab529522ab7f2bc6f08.zip |
miner: gas limit strategy, target 3141592 & def gas price 50 Shannon
Diffstat (limited to 'params')
-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) // |