increased fetcher timeout to avoid getting partial results

This commit is contained in:
pippellia-btc
2025-09-15 18:27:45 +02:00
parent a49d5e6765
commit 6569b00e66

View File

@@ -104,7 +104,7 @@ func fetch(ctx context.Context, config FetcherConfig, pubkeys []string) ([]*nost
return nil, nil
}
ctx, cancel := context.WithTimeout(ctx, time.Second*15)
ctx, cancel := context.WithTimeout(ctx, 30*time.Second)
defer cancel()
pool := nostr.NewSimplePool(ctx)