Browse Source

Add space between address and comma for added utxos msg for easier selection by double clicking

master
Kristaps Kaupe 2 years ago
parent
commit
6cf2237ef8
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 2
      jmclient/jmclient/output.py

2
jmclient/jmclient/output.py

@ -46,7 +46,7 @@ def fmt_utxo(utxo):
return utxostr
def fmt_tx_data(tx_data, wallet_service):
return 'path: {}, address: {}, value: {}'.format(
return 'path: {}, address: {} , value: {}'.format(
wallet_service.get_path_repr(wallet_service.script_to_path(tx_data['script'])),
wallet_service.script_to_addr(tx_data['script']), tx_data['value'])

Loading…
Cancel
Save