From dba778a9500a4a2ab0cf9a2d2430c4c0db6073ce Mon Sep 17 00:00:00 2001 From: luxueqing Date: Wed, 9 Mar 2022 16:22:54 +0800 Subject: [PATCH] chg:change default value of CheckpointerPollInterval and TronFeeLimit --- helper/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helper/config.go b/helper/config.go index b3a144f2..b09d48e0 100644 --- a/helper/config.go +++ b/helper/config.go @@ -63,7 +63,7 @@ const ( NoACKWaitTime = 1800 * time.Second // Time ack service waits to clear buffer and elect new proposer (1800 seconds ~ 30 mins) - DefaultCheckpointerPollInterval = 5 * time.Minute + DefaultCheckpointerPollInterval = 30 * time.Minute DefaultSyncerPollInterval = 1 * time.Minute DefaultBscSyncerPollInterval = 10 * time.Second DefaultTronSyncerPollInterval = 3 * time.Second @@ -74,7 +74,7 @@ const ( DefaultStartListenBlock = 0 DefaultMainchainGasLimit = uint64(5000000) - DefaultTronFeeLimit = uint64(1000000000) + DefaultTronFeeLimit = uint64(200000000) DefaultEthBusyLimitTxs = 1000 DefaultBscBusyLimitTxs = 1000