Skip to content

Commit 5f7e74d

Browse files
committed
[release/1.3.4] cmd/utils: lower the min accepted gas price for relay and GPO to 20 shannon
(cherry picked from commit ab92678)
1 parent 2be2842 commit 5f7e74d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/utils/flags.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ var (
183183
GasPriceFlag = cli.StringFlag{
184184
Name: "gasprice",
185185
Usage: "Minimal gas price to accept for mining a transactions",
186-
Value: new(big.Int).Mul(big.NewInt(50), common.Shannon).String(),
186+
Value: new(big.Int).Mul(big.NewInt(20), common.Shannon).String(),
187187
}
188188
ExtraDataFlag = cli.StringFlag{
189189
Name: "extradata",
@@ -356,7 +356,7 @@ var (
356356
GpoMinGasPriceFlag = cli.StringFlag{
357357
Name: "gpomin",
358358
Usage: "Minimum suggested gas price",
359-
Value: new(big.Int).Mul(big.NewInt(50), common.Shannon).String(),
359+
Value: new(big.Int).Mul(big.NewInt(20), common.Shannon).String(),
360360
}
361361
GpoMaxGasPriceFlag = cli.StringFlag{
362362
Name: "gpomax",

0 commit comments

Comments
 (0)