From a795c4a32b7502c688d3e807507ae89b30312655 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Fri, 17 May 2024 14:38:52 -0400 Subject: [PATCH] fix: initial delay --- cmd/storeverif/execute.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/storeverif/execute.go b/cmd/storeverif/execute.go index 7497044..e526ab8 100644 --- a/cmd/storeverif/execute.go +++ b/cmd/storeverif/execute.go @@ -204,7 +204,7 @@ func retrieveHistory(ctx context.Context, topic string, lastSyncTimestamp *time. now := wakuNode.Timesource().Now() // Query is done with a delay - startTime := now.Add(-(timeInterval + 5*time.Minute)) + startTime := now.Add(-(timeInterval + delay)) if lastSyncTimestamp != nil { startTime = *lastSyncTimestamp }