commit 00eb39a5601898747ad3cb7da817a76d84402934
parent 31f41b3d9416cab6922656e35867dd5964005d4e
Author: ThomasV <thomasv@electrum.org>
Date: Wed, 5 Oct 2016 07:08:45 +0200
fix issue with restore from old seed
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/base_wizard.py b/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')