commit 94988bd3f70949b531ed92935f5b798c0a9e8302
parent 121ac07b0106bbfcdb86ad9a1b1921257d22da5f
Author: ThomasV <thomasv@electrum.org>
Date: Fri, 30 Sep 2016 01:19:29 +0200
follow-up previous commit
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
@@ -313,7 +313,9 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
_('If you lose your seed, your money will be permanently lost.'),
_('To make sure that you have properly saved your seed, please retype it here.')
])
- seed, is_bip39, is_pass = self.seed_input(title, message, test)
+ self.opt_ext = False
+ self.opt_bip39 = False
+ seed, is_bip39, is_ext = self.seed_input(title, message, test)
return seed
@wizard_dialog