mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
fix is_watching_only
This commit is contained in:
parent
bade574188
commit
3188ff05a3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue