From 66f75cc73926de8037a5b79238f6fd9d169d6a33 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 19 Sep 2025 23:38:43 -0700 Subject: [PATCH] Device connection rate limits itself to twice per second so align polling with that. --- src/lib/ledger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ledger.ts b/src/lib/ledger.ts index 6f6a3ec..7c49045 100644 --- a/src/lib/ledger.ts +++ b/src/lib/ledger.ts @@ -487,7 +487,7 @@ export class Ledger { console.warn('Error polling Ledger device') this.#status = 'DISCONNECTED' } finally { - setTimeout(() => this.#poll(), 200) + setTimeout(() => this.#poll(), 500) } } -- 2.47.3