From 3e9e1635cf5620d0931bc3c914bf66f6ea023267 Mon Sep 17 00:00:00 2001 From: coinplug-jhjin Date: Mon, 6 Mar 2023 10:44:53 +0900 Subject: [PATCH] eth/ethconfig: Update 'TxLookupLimit' default value to match the block time of Wemix Chain. (about one year, 31536000) --- eth/ethconfig/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/ethconfig/config.go b/eth/ethconfig/config.go index 4b48b42189c2..03f86aba0da3 100644 --- a/eth/ethconfig/config.go +++ b/eth/ethconfig/config.go @@ -73,7 +73,7 @@ var Defaults = Config{ DatasetsLockMmap: false, }, NetworkId: 1111, - TxLookupLimit: 2350000, + TxLookupLimit: 31536000, LightPeers: 100, UltraLightFraction: 75, DatabaseCache: 512,