forked from LBRYCommunity/lbry-sdk
fix bug where support claim is returned when it shouldn't be
This commit is contained in:
parent
3f5efb1fa3
commit
a9ae1a1016
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ class Wallet(object):
|
|||
|
||||
def _get_my_unspent_claim(claims):
|
||||
for claim in claims:
|
||||
if claim['name'] == name and not claim['is spent']:
|
||||
if claim['name'] == name and not claim['is spent'] and not claim.get('supported_claimid'):
|
||||
return claim
|
||||
return False
|
||||
|
||||
|
|
Loading…
Reference in a new issue