From 4e6a5bf7fff5b328277a5bf87dfb4bce8aa7b070 Mon Sep 17 00:00:00 2001 From: Simon-Pierre Vivier Date: Wed, 28 Aug 2024 10:26:38 -0400 Subject: [PATCH] fix waku sync config defaults (#3001) --- waku/factory/external_config.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waku/factory/external_config.nim b/waku/factory/external_config.nim index 41e66640ae..6e5d99b998 100644 --- a/waku/factory/external_config.nim +++ b/waku/factory/external_config.nim @@ -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