From 9983578df0d69390d58e92e0af448f1664d0dc6c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 19 Mar 2019 10:17:14 +0100 Subject: [PATCH] lightning tx: remove amount from label --- electrum/gui/qt/history_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py index 429cc6b34..fb7920515 100644 --- a/electrum/gui/qt/history_list.py +++ b/electrum/gui/qt/history_list.py @@ -292,7 +292,7 @@ class HistoryModel(QAbstractItemModel, Logger): ln_value = tx_item['amount_msat']/1000. if txid and txid in transactions: item = transactions[txid] - item['label'] = tx_item['label'] + ' (%s)'%self.parent.format_amount_and_units(tx_item['amount_msat']/1000) + item['label'] = tx_item['label'] item['ln_value'] = Satoshis(ln_value) item['balance_msat'] = tx_item['balance_msat'] else: