diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-25 23:09:55 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-25 23:09:55 +0800 |
commit | d4428cc77ff7096a099fc15b85785f47c9d18387 (patch) | |
tree | 023d63a9749ddd6d7b064faa01dd27ff07e1d94d | |
parent | 6cffa743eee6f52a46df7b6c7a0b597787292402 (diff) | |
parent | ba15f9d282b68d42421f755231dcb410a2a06ecd (diff) | |
download | go-tangerine-d4428cc77ff7096a099fc15b85785f47c9d18387.tar go-tangerine-d4428cc77ff7096a099fc15b85785f47c9d18387.tar.gz go-tangerine-d4428cc77ff7096a099fc15b85785f47c9d18387.tar.bz2 go-tangerine-d4428cc77ff7096a099fc15b85785f47c9d18387.tar.lz go-tangerine-d4428cc77ff7096a099fc15b85785f47c9d18387.tar.xz go-tangerine-d4428cc77ff7096a099fc15b85785f47c9d18387.tar.zst go-tangerine-d4428cc77ff7096a099fc15b85785f47c9d18387.zip |
Merge pull request #1523 from obscuren/lower-gasprice
cmd/util: lowered default gas price
-rw-r--r-- | cmd/utils/flags.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 7f9c696e0..b66fe24cc 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -154,7 +154,7 @@ var ( GasPriceFlag = cli.StringFlag{ Name: "gasprice", Usage: "Sets the minimal gasprice when mining transactions", - Value: new(big.Int).Mul(big.NewInt(1), common.Szabo).String(), + Value: new(big.Int).Mul(big.NewInt(500), common.Shannon).String(), } UnlockedAccountFlag = cli.StringFlag{ |