pylint fix
This commit is contained in:
parent
6ee9f2513b
commit
485d5d55e8
1 changed files with 4 additions and 1 deletions
|
@ -80,7 +80,10 @@ class JSONResponseEncoder(JSONEncoder):
|
|||
except BadSignatureError:
|
||||
output['valid_signature'] = False
|
||||
except ValueError:
|
||||
log.exception(f'txo.id: {txo.id}, txo.channel.id:{txo.channel.id}, output: {output}')
|
||||
log.exception(
|
||||
'txo.id: %s, txo.channel.id:%s, output: %s',
|
||||
txo.id, txo.channel.id, output
|
||||
)
|
||||
output['valid_signature'] = False
|
||||
|
||||
if txo.script.is_claim_name:
|
||||
|
|
Loading…
Reference in a new issue