Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions helper/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down