Skip to content

Commit

Permalink
fix waku sync config defaults (#3001)
Browse files Browse the repository at this point in the history
  • Loading branch information
SionoiS authored and gabrielmer committed Aug 28, 2024
1 parent 2048b70 commit 4e6a5bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions waku/factory/external_config.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4e6a5bf

Please sign in to comment.