From ab92678fb39300d5823857a170be6638b1c2b2c5 Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Mon, 29 Feb 2016 14:15:18 +0100 Subject: cmd/utils: lower the min accepted gas price for relay and GPO to 20 shannon --- cmd/utils/flags.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/utils/flags.go') diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 8e89b9fb1..6dc19eda9 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -181,7 +181,7 @@ var ( GasPriceFlag = cli.StringFlag{ Name: "gasprice", 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{ Name: "extradata", @@ -350,7 +350,7 @@ var ( GpoMinGasPriceFlag = cli.StringFlag{ Name: "gpomin", 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{ Name: "gpomax", -- cgit