From 6cf2237ef833183c33ae4c11977aa174984ac980 Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Tue, 18 Jul 2023 01:30:55 +0300 Subject: [PATCH] Add space between address and comma for added utxos msg for easier selection by double clicking --- jmclient/jmclient/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jmclient/jmclient/output.py b/jmclient/jmclient/output.py index 7477bde..334b85d 100644 --- a/jmclient/jmclient/output.py +++ b/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'])