This commit is contained in:
ThomasV 2015-06-02 16:49:21 +02:00
parent 3188ff05a3
commit fb6a74e034
1 changed files with 1 additions and 1 deletions

View File

@ -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