From 57241d538817b560aa78df42e5c490d27284dd8d Mon Sep 17 00:00:00 2001 From: "amalraj.manigmail.com" Date: Fri, 3 May 2019 16:23:23 +0800 Subject: [PATCH] set the default ceil and floor gas limit to 800M and 700M --- eth/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/config.go b/eth/config.go index 8b659cabe..1cfbd394f 100644 --- a/eth/config.go +++ b/eth/config.go @@ -49,8 +49,8 @@ var DefaultConfig = Config{ DatabaseCache: 768, TrieCache: 256, TrieTimeout: 60 * time.Minute, - MinerGasFloor: 8000000, - MinerGasCeil: 8000000, + MinerGasFloor: 700000000, + MinerGasCeil: 800000000, MinerGasPrice: big.NewInt(params.GWei), MinerRecommit: 3 * time.Second,