From ac19d830b5232be9277cb45e954f23cccce54e89 Mon Sep 17 00:00:00 2001 From: Shusui MOYATANI Date: Wed, 4 Oct 2023 20:24:09 +0900 Subject: [PATCH] fix: eose timeout --- src/nostr/usePool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostr/usePool.ts b/src/nostr/usePool.ts index a194715..c9d4daa 100644 --- a/src/nostr/usePool.ts +++ b/src/nostr/usePool.ts @@ -2,7 +2,7 @@ import { createSignal } from 'solid-js'; import { SimplePool } from 'nostr-tools'; -const [pool] = createSignal(new SimplePool({ eoseSubTimeout: 15000 })); +const [pool] = createSignal(new SimplePool({ eoseSubTimeout: 12000 })); const usePool = () => pool;