From 7c1dabacea0f94c94941e67aea18996bee3f79e0 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Mon, 18 Dec 2023 10:07:53 -0300 Subject: [PATCH] decrease default eoseTimeout to 4400ms. --- pool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pool.ts b/pool.ts index eab1d167..4e5e6081 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 || 4400) // batch all closes into a single const closesReceived: string[] = []