Skip to content

Commit

Permalink
Make pycodestyle happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed Aug 2, 2018
1 parent 93311ca commit 898e2ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions electrumx/server/chain_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ def arg_to_hashX(arg):
for n, utxo in enumerate(db.get_utxos(hashX, limit), start=1):
lines.append(f'UTXO #{n:,d}: tx_hash '
f'{hash_to_hex_str(utxo.tx_hash)} '
f'tx_pos {utxo.tx_pos:,d} height {utxo.height:,d} '
f'value {utxo.value:,d}')
f'tx_pos {utxo.tx_pos:,d} height '
f'{utxo.height:,d} value {utxo.value:,d}')
if n is None:
lines.append('No UTXOs found')

Expand Down

0 comments on commit 898e2ee

Please sign in to comment.