fix: eose timeout

This commit is contained in:
Shusui MOYATANI
2023-10-04 20:24:09 +09:00
parent a1d7f48d90
commit ac19d830b5

View File

@@ -2,7 +2,7 @@ import { createSignal } from 'solid-js';
import { SimplePool } from 'nostr-tools'; import { SimplePool } from 'nostr-tools';
const [pool] = createSignal<SimplePool>(new SimplePool({ eoseSubTimeout: 15000 })); const [pool] = createSignal<SimplePool>(new SimplePool({ eoseSubTimeout: 12000 }));
const usePool = () => pool; const usePool = () => pool;