fix_: missing messages delay should be substracted (#5453)

This commit is contained in:
richΛrd 2024-07-01 11:38:29 -04:00 committed by GitHub
parent d5acf01291
commit 01895bab30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ func (w *Waku) SetTopicsToVerifyForMissingMessages(peerID peer.ID, pubsubTopic s
peerID: peerID,
pubsubTopic: pubsubTopic,
contentTopics: contentTopics,
lastChecked: w.timesource.Now().Add(delay),
lastChecked: w.timesource.Now().Add(-delay),
ctx: ctx,
cancel: cancel,
}