From 32c600bbeeaad9024d2cb7a199ef2e31649829ff Mon Sep 17 00:00:00 2001 From: "amalraj.manigmail.com" Date: Fri, 3 May 2019 11:29:11 +0800 Subject: [PATCH] set the default ceil and floor gas limit to 800M and 700M --- eth/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/config.go b/eth/config.go index 423fcfcf0..1cfbd394f 100644 --- a/eth/config.go +++ b/eth/config.go @@ -50,7 +50,7 @@ var DefaultConfig = Config{ TrieCache: 256, TrieTimeout: 60 * time.Minute, MinerGasFloor: 700000000, - MinerGasCeil: 700000000, + MinerGasCeil: 800000000, MinerGasPrice: big.NewInt(params.GWei), MinerRecommit: 3 * time.Second,