diff --git a/lbrynet/core/Wallet.py b/lbrynet/core/Wallet.py index 9a0adc56d..47ae0f384 100644 --- a/lbrynet/core/Wallet.py +++ b/lbrynet/core/Wallet.py @@ -378,7 +378,7 @@ class Wallet(object): 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 not claim.get('supported_claimid', False): return claim return False