From 11b36ff4c8235f47f62d38c946a4a1847c00be8a Mon Sep 17 00:00:00 2001 From: Kay Kurokawa Date: Thu, 10 Nov 2016 12:52:35 -0500 Subject: [PATCH] fixing to remove supports from get_my_claim --- lbrynet/core/Wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/core/Wallet.py b/lbrynet/core/Wallet.py index 5dbb785b6..9a0adc56d 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'): + if claim['name'] == name and not claim['is spent'] and not claim.get('supported_claimid',False): return claim return False