add context to goroutine

This commit is contained in:
Barry Deen 2024-09-13 08:11:57 -04:00
parent 51d8a6e6f0
commit 02fc217510

View File

@ -356,15 +356,15 @@ func archiveTrustedNotes(ctx context.Context, relay *khatru.Relay) {
log.Println("📦 archiving trusted notes...") log.Println("📦 archiving trusted notes...")
for ev := range pool.SubMany(timeout, seedRelays, filters) { for ev := range pool.SubMany(timeout, seedRelays, filters) {
go archiveEvent(relay, *ev.Event) go archiveEvent(ctx, relay, *ev.Event)
} }
log.Println("📦 archived", trustedNotes, "trusted notes and discarded ", untrustedNotes, "untrusted notes") log.Println("📦 archived", trustedNotes, "trusted notes and discarded ", untrustedNotes, "untrusted notes")
} }
func archiveEvent(relay *khatru.Relay, ev nostr.Event) { func archiveEvent(ctx context.Context, relay *khatru.Relay, ev nostr.Event) {
if trustNetworkMap[ev.PubKey] { if trustNetworkMap[ev.PubKey] {
wdb.Publish(context.Background(), ev) wdb.Publish(ctx, ev)
relay.BroadcastEvent(&ev) relay.BroadcastEvent(&ev)
trustedNotes++ trustedNotes++
} else { } else {