fix coveralls error

This commit is contained in:
Jack 2016-11-14 14:02:19 -05:00
parent 763fefb33f
commit e1cdbdc91d

View file

@ -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