diff --git a/lib/wallet.py b/lib/wallet.py index 32b9a094a..4e2230ad9 100644 --- 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 > 0 and n == [[None, None]] * len(n) + return len(n) > 0 and n == [[None, None]] * len(n) def has_seed(self): return False