Browse Source

fix issue with restore from old seed

283
ThomasV 8 years ago
parent
commit
00eb39a560
  1. 2
      lib/base_wizard.py

2
lib/base_wizard.py

@ -276,7 +276,7 @@ class BaseWizard(object):
f = lambda passphrase: self.run('create_keystore', seed, passphrase)
self.passphrase_dialog(run_next=f) if is_ext else f('')
elif seed_type == 'old':
self.run('create_keystore', seed, passphrase)
self.run('create_keystore', seed, '')
elif seed_type == '2fa':
if self.is_kivy:
self.show_error('2FA seeds are not supported in this version')

Loading…
Cancel
Save