diff --git a/lbrynet/core/Wallet.py b/lbrynet/core/Wallet.py index b3fc83592..540f6ef99 100644 --- a/lbrynet/core/Wallet.py +++ b/lbrynet/core/Wallet.py @@ -390,12 +390,12 @@ class Wallet(object): if not claim: return False claim['value'] = json.loads(claim['value']) - return claim + return claim def _get_my_unspent_claim(claims): for claim in claims: - if claim['name'] == name and not claim['is spent'] and not claim.get('supported_claimid', False): + if claim['name'] == name and not claim['is spent'] and claim['category'] != 'support': return claim return False