From bc1ae4fe94586db065eab1f37675bf4ceb4fed9f Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 5 Sep 2014 16:41:51 +0200 Subject: [PATCH] filter wallet types --- gui/qt/installwizard.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 9f2768c8e..63efcf6d6 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -346,10 +346,12 @@ class InstallWizard(QDialog): if not wallet_type: return elif wallet_type == 'hardware': - hardware_wallets = [('trezor',_("Trezor")), ('btchip',_("BTChip"))] + hardware_wallets = map(lambda x:(x[1],x[2]), filter(lambda x:x[0]=='hardware', electrum.wallet.wallet_types)) wallet_type = self.choice(_("Hardware Wallet"), 'Select your hardware wallet', hardware_wallets) if not wallet_type: return + elif wallet_type == 'twofactor': + wallet_type = '2fa' if action == 'create': self.storage.put('wallet_type', wallet_type)