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 /cmd | |
parent | ff66e8fa2935d59d5104e324861d9e1bb517ffaa (diff) | |
download | go-tangerine-26c6e3b206bcf95b6b042ab529522ab7f2bc6f08.tar.gz go-tangerine-26c6e3b206bcf95b6b042ab529522ab7f2bc6f08.tar.zst go-tangerine-26c6e3b206bcf95b6b042ab529522ab7f2bc6f08.zip |
miner: gas limit strategy, target 3141592 & def gas price 50 Shannon
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/utils/flags.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index d283329f1..815d48124 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -158,7 +158,7 @@ var ( GasPriceFlag = cli.StringFlag{ Name: "gasprice", Usage: "Sets the minimal gasprice when mining transactions", - Value: new(big.Int).Mul(big.NewInt(500), common.Shannon).String(), + Value: new(big.Int).Mul(big.NewInt(50), common.Shannon).String(), } UnlockedAccountFlag = cli.StringFlag{ @@ -318,12 +318,12 @@ var ( GpoMinGasPriceFlag = cli.StringFlag{ Name: "gpomin", Usage: "Minimum suggested gas price", - Value: new(big.Int).Mul(big.NewInt(1), common.Szabo).String(), + Value: new(big.Int).Mul(big.NewInt(50), common.Shannon).String(), } GpoMaxGasPriceFlag = cli.StringFlag{ Name: "gpomax", Usage: "Maximum suggested gas price", - Value: new(big.Int).Mul(big.NewInt(100), common.Szabo).String(), + Value: new(big.Int).Mul(big.NewInt(500), common.Shannon).String(), } GpoFullBlockRatioFlag = cli.IntFlag{ Name: "gpofull", |