[release/1.3.4] cmd/utils: lower the min accepted gas price for relay and GPO to 20 shannon

(cherry picked from commit ab92678fb3)
pull/2258/head
Jeffrey Wilcke 9 years ago
parent 2be2842758
commit 5f7e74d5c8
  1. 4
      cmd/utils/flags.go

@ -183,7 +183,7 @@ var (
GasPriceFlag = cli.StringFlag{ GasPriceFlag = cli.StringFlag{
Name: "gasprice", Name: "gasprice",
Usage: "Minimal gas price to accept for mining a transactions", Usage: "Minimal gas price to accept for mining a transactions",
Value: new(big.Int).Mul(big.NewInt(50), common.Shannon).String(), Value: new(big.Int).Mul(big.NewInt(20), common.Shannon).String(),
} }
ExtraDataFlag = cli.StringFlag{ ExtraDataFlag = cli.StringFlag{
Name: "extradata", Name: "extradata",
@ -356,7 +356,7 @@ var (
GpoMinGasPriceFlag = cli.StringFlag{ GpoMinGasPriceFlag = cli.StringFlag{
Name: "gpomin", Name: "gpomin",
Usage: "Minimum suggested gas price", Usage: "Minimum suggested gas price",
Value: new(big.Int).Mul(big.NewInt(50), common.Shannon).String(), Value: new(big.Int).Mul(big.NewInt(20), common.Shannon).String(),
} }
GpoMaxGasPriceFlag = cli.StringFlag{ GpoMaxGasPriceFlag = cli.StringFlag{
Name: "gpomax", Name: "gpomax",

Loading…
Cancel
Save