From 72c51e2bc97cd56c79cf7ff195c3524cb68b0009 Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Mon, 17 Jul 2023 18:13:53 +0800 Subject: [PATCH] set new MinGasPrice in function makeConfigNode --- cmd/XDC/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/XDC/config.go b/cmd/XDC/config.go index 4dad8306ae..948e59f417 100644 --- a/cmd/XDC/config.go +++ b/cmd/XDC/config.go @@ -185,6 +185,7 @@ func makeConfigNode(ctx *cli.Context) (*node.Node, XDCConfig) { common.MinGasPrice = big.NewInt(gasPrice) } } + common.MinGasPrice50x = common.MinGasPrice50x.Mul(common.MinGasPrice, big.NewInt(50)) // read passwords from environment passwords := []string{}