forked from LBRYCommunity/lbry-sdk
fix syntax error
This commit is contained in:
parent
9e8cb17ecb
commit
2b234e0713
1 changed files with 4 additions and 1 deletions
|
@ -39,7 +39,10 @@ class Account(BaseAccount):
|
|||
def maybe_migrate_certificates(self):
|
||||
for lookup_key in self.certificates.keys():
|
||||
if ':' not in lookup_key:
|
||||
claim = self.ledger.
|
||||
claim = yield self.ledger.network.get_claims_by_ids(lookup_key)
|
||||
print(claim)
|
||||
break
|
||||
|
||||
def get_balance(self, include_claims=False):
|
||||
if include_claims:
|
||||
return super(Account, self).get_balance()
|
||||
|
|
Loading…
Reference in a new issue