Merge pull request #1523 from obscuren/lower-gasprice

cmd/util: lowered default gas price
pull/1516/merge
Jeffrey Wilcke 9 years ago
commit d4428cc77f
  1. 2
      cmd/utils/flags.go

@ -154,7 +154,7 @@ var (
GasPriceFlag = cli.StringFlag{ GasPriceFlag = cli.StringFlag{
Name: "gasprice", Name: "gasprice",
Usage: "Sets the minimal gasprice when mining transactions", 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{ UnlockedAccountFlag = cli.StringFlag{

Loading…
Cancel
Save