From: Chris Duncan Date: Wed, 20 Aug 2025 20:23:46 +0000 (-0700) Subject: Privatize Ledger version method and rearrange. X-Git-Tag: v0.10.5~41^2~34 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=497307630f13e790b48e314c789ba1c2360ca187;p=libnemo.git Privatize Ledger version method and rearrange. --- diff --git a/src/lib/wallet/ledger.ts b/src/lib/wallet/ledger.ts index 09f2a48..5f766e9 100644 --- a/src/lib/wallet/ledger.ts +++ b/src/lib/wallet/ledger.ts @@ -131,7 +131,7 @@ export class Ledger { * - CONNECTED: Nano app is open and listening */ static async connect (): Promise { - const version = await this.version() + const version = await this.#version() if (version.status !== 'OK') { this.#status = 'DISCONNECTED' } else if (version.name === 'Nano') {