From 029f33a47c137d97e3bab754f7069ee9cac6f928 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 29 Apr 2014 19:33:42 +0200 Subject: [PATCH] minor fix for restore dialog --- gui/qt/installwizard.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index a79c27313..bce5f77fe 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -363,6 +363,8 @@ class InstallWizard(QDialog): if t == 'standard': text = self.enter_seed_dialog(True, None) + if not text: + return if Wallet.is_seed(text): password = self.password_dialog() wallet = Wallet.from_seed(text, self.storage)