Upgrading to Ledger Flutter Plus

This commit is contained in:
Konstantin Ullrich 2024-09-17 14:58:30 +02:00
parent e9d5da01a2
commit 25a2cb194d
No known key found for this signature in database
GPG key ID: 6B3199AD9B3D23B8

View file

@ -52,8 +52,8 @@ class CWBitcoinCash extends BitcoinCash {
final hardwareWalletService = BitcoinCashHardwareWalletService(ledgerVM.connection); final hardwareWalletService = BitcoinCashHardwareWalletService(ledgerVM.connection);
try { try {
return hardwareWalletService.getAvailableAccounts(index: index, limit: limit); return hardwareWalletService.getAvailableAccounts(index: index, limit: limit);
} on LedgerException catch (err) { } catch (err) {
print(err.message); print(err);
throw err; throw err;
} }
} }