electrum

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

commit 2b10ccdcc47fe0f45c7e9c5baf52ff3ada78afb0
parent 622fb6c08b32383e91f0c42833d46814a187d4c3
Author: ThomasV <thomasv@gitorious>
Date:   Fri,  5 Sep 2014 16:31:57 +0200

fix

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -1599,7 +1599,7 @@ class Wallet(object): run_hook('add_wallet_types', wallet_types) wallet_type = storage.get('wallet_type') if wallet_type: - for t, l, WalletClass in wallet_types: + for cat, t, name, WalletClass in wallet_types: if t == wallet_type: return WalletClass(storage) else: