From c54fd95b3e0be098dfb458909695936cf237e6bd Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Mon, 18 Dec 2023 10:07:53 -0300 Subject: [PATCH] decrease default eoseTimeout to 3400ms. --- pool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pool.ts b/pool.ts index eab1d16..f2e34d6 100644 --- a/pool.ts +++ b/pool.ts @@ -56,7 +56,7 @@ export class SimplePool { const eoseTimeout = setTimeout(() => { handleEose = () => {} params.oneose?.() - }, params.eoseSubTimeout || 5400) + }, params.eoseSubTimeout || 3400) // batch all closes into a single const closesReceived: string[] = []