mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Increase default gas limit to 11M
The default gas limit should be increased in Geth and Parity. This will signal to miners that developers think that new limit is safe. Some miners are also lazy and do not adjust defaults. Let's get it done!
This commit is contained in:
parent
efe123759a
commit
77c6b82026
1 changed files with 2 additions and 2 deletions
|
|
@ -51,8 +51,8 @@ var DefaultConfig = Config{
|
||||||
TrieDirtyCache: 256,
|
TrieDirtyCache: 256,
|
||||||
TrieTimeout: 60 * time.Minute,
|
TrieTimeout: 60 * time.Minute,
|
||||||
Miner: miner.Config{
|
Miner: miner.Config{
|
||||||
GasFloor: 8000000,
|
GasFloor: 11000000,
|
||||||
GasCeil: 8000000,
|
GasCeil: 11000000,
|
||||||
GasPrice: big.NewInt(params.GWei),
|
GasPrice: big.NewInt(params.GWei),
|
||||||
Recommit: 3 * time.Second,
|
Recommit: 3 * time.Second,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue