From cf1fbbf3ad67eb506bf729a6a686a8f76afe85d9 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 27 Oct 2014 15:47:10 +0100 Subject: [PATCH] fix is_watching_only for imported wallets --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index fd5533d0..4c4bbf59 100644 --- 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