electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 2d3df982eb868ca3edb5cfb68687bae78ddbdf32
parent b63fcde503d54bdb4228780d4191a93e168682f9
Author: ThomasV <thomasv@gitorious>
Date:   Thu, 21 Aug 2014 19:13:26 +0200

fix wizard

Diffstat:
Mgui/qt/installwizard.py | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py @@ -373,21 +373,22 @@ class InstallWizard(QDialog): if action == 'new': action, wallet_type = self.restore_or_create() + if action == 'create': + self.storage.put('wallet_type', wallet_type) + if action is None: return + if action == 'restore': wallet = self.restore(wallet_type) if not wallet: return action = None - elif action == 'create': - self.storage.put('wallet_type', wallet_type) + else: wallet = Wallet(self.storage) action = wallet.get_action() # fixme: password is only needed for multiple accounts password = None - else: - raise BaseException('unknown action') while action is not None: util.print_error("installwizard:", wallet, action)