electrum

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

commit cf1fbbf3ad67eb506bf729a6a686a8f76afe85d9
parent 063fc4bb2edcf38ff87b77f6ea21553e2762ac27
Author: ThomasV <thomasv@gitorious>
Date:   Mon, 27 Oct 2014 15:47:10 +0100

fix is_watching_only for imported wallets

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

diff --git a/lib/wallet.py b/lib/wallet.py @@ -1043,7 +1043,7 @@ class Imported_Wallet(Abstract_Wallet): def is_watching_only(self): acc = self.accounts[IMPORTED_ACCOUNT] n = acc.keypairs.values() - return n == [(None, None)] * len(n) + return n == [[None, None]] * len(n) def has_seed(self): return False