fix typo
This commit is contained in:
@@ -1302,7 +1302,7 @@ class Imported_Wallet(Abstract_Wallet):
|
|||||||
def is_watching_only(self):
|
def is_watching_only(self):
|
||||||
acc = self.accounts[IMPORTED_ACCOUNT]
|
acc = self.accounts[IMPORTED_ACCOUNT]
|
||||||
n = acc.keypairs.values()
|
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):
|
def has_seed(self):
|
||||||
return False
|
return False
|
||||||
|
|||||||
Reference in New Issue
Block a user