FIX: for slip39 wallets import bech32 even if no tx found

This commit is contained in:
Ivan Vershigora 2021-07-06 12:05:11 +03:00 committed by Overtorment
parent bac8a23d4f
commit 07c75c47b0

View file

@ -298,9 +298,7 @@ function WalletImport() {
const s3 = new SLIP39SegwitBech32Wallet();
s3.setSecret(importText);
if (await s3.wasEverUsed()) {
return WalletImport._saveWallet(s3);
}
return WalletImport._saveWallet(s3);
}
}