1
0
Fork 0
forked from forks/go-ethereum

miner: increase default gas limit to 36M (#31705)

This commit is contained in:
Marius van der Wijden 2025-04-24 18:19:10 +02:00 committed by GitHub
parent 846c14e21f
commit 7ad97a4a03
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -52,7 +52,7 @@ type Config struct {
// DefaultConfig contains default settings for miner. // DefaultConfig contains default settings for miner.
var DefaultConfig = Config{ var DefaultConfig = Config{
GasCeil: 30_000_000, GasCeil: 36_000_000,
GasPrice: big.NewInt(params.GWei / 1000), GasPrice: big.NewInt(params.GWei / 1000),
// The default recommit time is chosen as two seconds since // The default recommit time is chosen as two seconds since