From f27d744d91575bf3fc88e7d61419db4a0776633c Mon Sep 17 00:00:00 2001 From: kaliubuntu0206 Date: Wed, 8 Nov 2023 20:06:42 +0900 Subject: [PATCH] miner: fixed default gasPriceOracle min price for private networks --- miner/miner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miner/miner.go b/miner/miner.go index b7273948f5..9d0b0069e1 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -58,7 +58,7 @@ type Config struct { // DefaultConfig contains default settings for miner. var DefaultConfig = Config{ GasCeil: 30000000, - GasPrice: big.NewInt(params.GWei), + GasPrice: big.NewInt(2 * params.Wei), // The default recommit time is chosen as two seconds since // consensus-layer usually will wait a half slot of time(6s)