commit 3188ff05a3a6b1dfc6a64ec2ac79dc6633a1270a
parent bade5741881e2b5c44b5a37caae324a28a583af5
Author: ThomasV <thomasv@gitorious>
Date: Tue, 2 Jun 2015 16:41:32 +0200
fix is_watching_only
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -1302,7 +1302,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 > 0 and n == [[None, None]] * len(n)
def has_seed(self):
return False