From 00eb39a5601898747ad3cb7da817a76d84402934 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 5 Oct 2016 07:08:45 +0200 Subject: [PATCH] fix issue with restore from old seed --- lib/base_wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base_wizard.py b/lib/base_wizard.py index cd395de9c..0382e218e 100644 --- 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')