updated default firehose offset

This commit is contained in:
pippellia-btc
2025-05-30 10:21:02 +02:00
parent a76ee1627e
commit 90c70167f2
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ type FirehoseConfig struct {
func NewFirehoseConfig() FirehoseConfig {
return FirehoseConfig{
Relays: defaultRelays,
Offset: 10 * time.Second,
Offset: time.Minute,
}
}

View File

@@ -23,7 +23,7 @@ func TestFirehose(t *testing.T) {
defer cancel()
checker := mockChecker{pubkey: pip}
config := FirehoseConfig{Relays: defaultRelays}
config := NewFirehoseConfig()
Firehose(ctx, config, checker, print)
}