meriadec
7 years ago
No known key found for this signature in database
GPG Key ID: 1D2FC2305E2CB399
1 changed files with
6 additions and
1 deletions
-
src/internals/usb/wallet/scanAccountsOnDevice.js
|
|
@ -63,7 +63,12 @@ async function scanNextAccount({ wallet, hwApp, accountIndex = 0, accountsCount, |
|
|
|
return accounts |
|
|
|
} |
|
|
|
|
|
|
|
return scanNextAccount(wallet, hwApp, accountIndex + 1, accounts) |
|
|
|
return scanNextAccount({ |
|
|
|
wallet, |
|
|
|
hwApp, |
|
|
|
accountIndex: accountIndex + 1, |
|
|
|
accounts, |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
export default async function scanAccountsOnDevice(props: Props): Account[] { |
|
|
|