diff --git a/helper/config.go b/helper/config.go index 7402000e..3207f132 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 @@ -73,8 +73,10 @@ const ( DefaultStakingPollInterval = 1 * time.Minute DefaultStartListenBlock = 0 + DefaultMainchainMaxGasPrice = 400000000000 // 400 Gwei - DefaultTronFeeLimit = uint64(1000000000) + DefaultTronFeeLimit = uint64(200000000) + DefaultEthBusyLimitTxs = 1000 DefaultBscBusyLimitTxs = 1000