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:
Marius Kjærstad 2019-09-12 18:06:01 +02:00 committed by GitHub
parent efe123759a
commit 77c6b82026
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,8 +51,8 @@ var DefaultConfig = Config{
TrieDirtyCache: 256,
TrieTimeout: 60 * time.Minute,
Miner: miner.Config{
GasFloor: 8000000,
GasCeil: 8000000,
GasFloor: 11000000,
GasCeil: 11000000,
GasPrice: big.NewInt(params.GWei),
Recommit: 3 * time.Second,
},