Browse Source

fix wizard options (issue #2080)

283
ThomasV 8 years ago
parent
commit
85c7fccdf9
  1. 7
      gui/qt/installwizard.py

7
gui/qt/installwizard.py

@ -264,9 +264,14 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
@wizard_dialog
def restore_seed_dialog(self, run_next, test):
options = []
if self.opt_ext:
options.append('ext')
if self.opt_bip39:
options.append('bip39')
title = _('Enter Seed')
message = _('Please enter your seed phrase in order to restore your wallet.')
return self.seed_input(title, message, test, ['ext', 'bip39'])
return self.seed_input(title, message, test, options)
@wizard_dialog
def confirm_seed_dialog(self, run_next, test):

Loading…
Cancel
Save