fixing to remove supports from get_my_claim
This commit is contained in:
parent
1f06339d5a
commit
11b36ff4c8
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue