electrum

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

commit 9598c6999ff9ed986cfe1e51cbb03774ffceec6e
parent 082f8e50f205df07291143fd8bc4cac1f34f475c
Author: ThomasV <thomasv@electrum.org>
Date:   Tue, 11 Oct 2016 11:44:34 +0200

fix exception type

Diffstat:
Mlib/base_wizard.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/base_wizard.py b/lib/base_wizard.py @@ -285,7 +285,7 @@ class BaseWizard(object): self.load_2fa() self.run('on_restore_seed', seed, is_ext) else: - raise + raise BaseException('Unknown seed type', seed_type) def on_restore_bip39(self, seed, passphrase): f = lambda x: self.run('on_bip44', seed, passphrase, int(x))