aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-07-25 23:03:10 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-07-25 23:16:26 +0800
commit16a3a4303f52cafc02b3cc593676b703defece8e (patch)
tree1c765d14cad2d5e131067839209b594411991835
parenteaed7584f1ce69407603ad733f1971650d5cb868 (diff)
downloadgo-tangerine-16a3a4303f52cafc02b3cc593676b703defece8e.tar
go-tangerine-16a3a4303f52cafc02b3cc593676b703defece8e.tar.gz
go-tangerine-16a3a4303f52cafc02b3cc593676b703defece8e.tar.bz2
go-tangerine-16a3a4303f52cafc02b3cc593676b703defece8e.tar.lz
go-tangerine-16a3a4303f52cafc02b3cc593676b703defece8e.tar.xz
go-tangerine-16a3a4303f52cafc02b3cc593676b703defece8e.tar.zst
go-tangerine-16a3a4303f52cafc02b3cc593676b703defece8e.zip
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 95217300b..52030c76e 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -149,7 +149,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{