From 77c6b82026227aa86bc2f1d8f1d1b311d4abf233 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marius=20Kj=C3=A6rstad?= Date: Thu, 12 Sep 2019 18:06:01 +0200 Subject: [PATCH] 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! --- eth/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/config.go b/eth/config.go index 5094a533bf..963ce7ea1e 100644 --- a/eth/config.go +++ b/eth/config.go @@ -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, },