From a9ae1a101692c3269a4588682b4433aa1364ace7 Mon Sep 17 00:00:00 2001 From: Jack Date: Thu, 20 Oct 2016 11:15:35 -0400 Subject: [PATCH] fix bug where support claim is returned when it shouldn't be --- 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 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