fix waku sync config defaults (#3001)

This commit is contained in:
Simon-Pierre Vivier 2024-08-28 10:26:38 -04:00 committed by Gabriel mermelstein
parent 2048b70649
commit 4e6a5bf7ff
No known key found for this signature in database
GPG Key ID: 82B8134785FEAE0D

View File

@ -403,13 +403,13 @@ type WakuNodeConf* = object
storeSyncInterval* {.
desc: "Interval between store sync attempts. In seconds.",
defaultValue: 3600, # 1 hours
defaultValue: 300, # 5 minutes
name: "store-sync-interval"
.}: int64
storeSyncRange* {.
desc: "Amount of time to sync. In seconds.",
defaultValue: 300, # 5 minutes
defaultValue: 3600, # 1 hours
name: "store-sync-range"
.}: int64