Skip to content

Commit 30f5177

Browse files
committed
Merge branch 'default-history-drop' into 'main'
feat: set default history drop to 14 days for mainnet See merge request flarenetwork/FSP/flare-system-c-chain-indexer!69
2 parents 1da383b + b5c3a80 commit 30f5177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var (
2626
CfgFlag = flag.String("config", "config.toml", "Configuration file (toml format)")
2727
BackoffMaxElapsedTime time.Duration = 5 * time.Minute
2828
Timeout time.Duration = time.Second
29-
mainnetMinHistoryDropSeconds = uint64((10 * day).Seconds())
29+
mainnetMinHistoryDropSeconds = uint64((14 * day).Seconds())
3030
testnetMinHistoryDropSeconds = uint64((2 * day).Seconds())
3131
)
3232

0 commit comments

Comments
 (0)