fix is_watching_only for imported wallets

This commit is contained in:
ThomasV 2014-10-27 15:47:10 +01:00
parent 063fc4bb2e
commit cf1fbbf3ad
1 changed files with 1 additions and 1 deletions

View File

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