commit ed48588d8ad612da7d1c5ead2a1b11c02f5842b6
parent 194291c80b9c5dffdb407de2c037dabd5acd72a5
Author: ThomasV <thomasv@gitorious>
Date: Mon, 2 Jun 2014 21:54:53 +0200
fix: wizard 2of2
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
@@ -412,6 +412,9 @@ class InstallWizard(QDialog):
if action in ['create_2fa_2', 'create_2of3_2']:
wallet = Wallet_2of3(self.storage)
+ if action in ['create_2of2_2']:
+ wallet = Wallet_2of2(self.storage)
+
if action in ['create', 'create_2of2_1', 'create_2fa_2', 'create_2of3_1']:
seed = wallet.make_seed()
sid = None if action == 'create' else 'hot'