From 07c75c47b010892a752c3650a77ee988bb455477 Mon Sep 17 00:00:00 2001 From: Ivan Vershigora Date: Tue, 6 Jul 2021 12:05:11 +0300 Subject: [PATCH] FIX: for slip39 wallets import bech32 even if no tx found --- class/wallet-import.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/class/wallet-import.js b/class/wallet-import.js index ea2125cd7..266abdf22 100644 --- a/class/wallet-import.js +++ b/class/wallet-import.js @@ -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); } }