From 04cbe19edbd64e479dd3cde4ac6cfd00f96e23f2 Mon Sep 17 00:00:00 2001 From: ucwong Date: Fri, 22 Nov 2024 09:52:31 +0800 Subject: [PATCH] revert tips --- miner/miner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miner/miner.go b/miner/miner.go index 74cc21965b..5f92dd0b4b 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -62,7 +62,7 @@ type Config struct { var DefaultConfig = Config{ GasFloor: params.MinerGasFloor, GasCeil: params.MinerGasCeil, - GasPrice: big.NewInt(params.GWei / 1000), + GasPrice: big.NewInt(params.GWei), Recommit: 3 * time.Second, }