mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-26 08:55:56 +01:00
FIX: wallet duplicates (happens when opening deeplinks)
This commit is contained in:
parent
354a5828ca
commit
e3c44d13f8
1 changed files with 5 additions and 0 deletions
|
@ -12,6 +12,11 @@ let A = require('./analytics');
|
|||
let BlueApp = new AppStorage();
|
||||
|
||||
async function startAndDecrypt(retry) {
|
||||
console.log('startAndDecrypt');
|
||||
if (BlueApp.getWallets().length > 0) {
|
||||
console.log('App already has some wallets, so we are in already started state, exiting startAndDecrypt');
|
||||
return;
|
||||
}
|
||||
let password = false;
|
||||
if (await BlueApp.storageIsEncrypted()) {
|
||||
do {
|
||||
|
|
Loading…
Add table
Reference in a new issue