From 5b5b11fd96bd2446751c84283648ed22e4f5e06f Mon Sep 17 00:00:00 2001 From: Sylvia G Date: Tue, 6 Apr 2021 03:55:40 +0300 Subject: [PATCH] fix "blank mnemonic" error when only using a BIP39 seed (no mnemonic phrase) and then changing the coin --- src/js/index.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/js/index.js b/src/js/index.js index c502208..072d489 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -209,12 +209,7 @@ var network = networks[networkIndex]; network.onSelect(); adjustNetworkForSegwit(); - if (seed != null) { - phraseChanged(); - } - else { - rootKeyChanged(); - } + rootKeyChanged(); } function bip32ClientChanged(e) {