mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
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.
This commit is contained in:
parent
c80e7f4280
commit
ebff350a2e
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue