diff --git a/lbrynet/core/Wallet.py b/lbrynet/core/Wallet.py index 896d71de8..528ad983f 100644 --- a/lbrynet/core/Wallet.py +++ b/lbrynet/core/Wallet.py @@ -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