mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-07 23:48:36 +00:00
miner: default gaslimit 60M (#32734)
This commit is contained in:
parent
15a94b4331
commit
bc451546ae
1 changed files with 1 additions and 1 deletions
|
|
@ -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: 45_000_000,
|
GasCeil: 60_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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue