From 7ca79f77b2518862953c74e084a9b690dec78a9a Mon Sep 17 00:00:00 2001 From: dskvr Date: Tue, 10 Sep 2024 19:31:58 +0200 Subject: [PATCH] decrease sensitivity --- src/lib/core/MRPMonitors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/core/MRPMonitors.ts b/src/lib/core/MRPMonitors.ts index 32656c8..32062b3 100644 --- a/src/lib/core/MRPMonitors.ts +++ b/src/lib/core/MRPMonitors.ts @@ -9,7 +9,7 @@ type RelayDiscoveryDictionary = Record export class MRPMonitors extends MRPData { private readonly monitorEventRelays: string[] = ['wss://history.nostr.watch', 'wss://relaypag.es', 'wss://relay.nostr.watch'] - private readonly livenessThreshold: number = Math.round(Date.now()/1000)-60*60*2 + private readonly livenessThreshold: number = Math.round(Date.now()/1000)-60*60*6 private ndk: NDK; private $: MRPState;