aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-07-25 23:09:55 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-07-25 23:09:55 +0800
commitd4428cc77ff7096a099fc15b85785f47c9d18387 (patch)
tree023d63a9749ddd6d7b064faa01dd27ff07e1d94d
parent6cffa743eee6f52a46df7b6c7a0b597787292402 (diff)
parentba15f9d282b68d42421f755231dcb410a2a06ecd (diff)
downloadgo-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.go2
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{