From ebff350a2efede7bc207258a85456556a1b68c78 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 24 Jun 2025 13:17:41 +0200 Subject: [PATCH] miner: default gaslimit 45M (#32087) We believe it is safe to raise the gaslimit to 45M before the Fusaka fork. So this PR changes the default to 45M. --- miner/miner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miner/miner.go b/miner/miner.go index 3cec054d19..ddfe0dcf26 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -52,7 +52,7 @@ type Config struct { // DefaultConfig contains default settings for miner. var DefaultConfig = Config{ - GasCeil: 36_000_000, + GasCeil: 45_000_000, GasPrice: big.NewInt(params.GWei / 1000), // The default recommit time is chosen as two seconds since