From 426663826044385b356f939157d48da17b5bb854 Mon Sep 17 00:00:00 2001 From: Samy RABAH-MONTAROU Date: Thu, 22 Aug 2024 18:23:48 +0200 Subject: [PATCH] log out accountdata #2 --- libs/ledger-live-common/src/__tests__/test-helpers/bridge.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ledger-live-common/src/__tests__/test-helpers/bridge.ts b/libs/ledger-live-common/src/__tests__/test-helpers/bridge.ts index ed20c61cd08c..d69680bb0486 100644 --- a/libs/ledger-live-common/src/__tests__/test-helpers/bridge.ts +++ b/libs/ledger-live-common/src/__tests__/test-helpers/bridge.ts @@ -78,6 +78,7 @@ export function testBridge(data: DatasetTest): v currency: CryptoCurrency; }> = []; const { implementations, currencies } = data; + console.log({currencies}) Object.keys(currencies).forEach(currencyId => { const currencyData = currencies[currencyId]; const currency = getCryptoCurrencyById(currencyId); @@ -87,6 +88,7 @@ export function testBridge(data: DatasetTest): v }); const accounts = currencyData.accounts || []; + console.log({accounts}) accounts.forEach(accountData => implementations.forEach(impl => { console.log({accountDataImp: accountData.implementations})