commit 9983578df0d69390d58e92e0af448f1664d0dc6c
parent 93e8d4f953056a7affc198c5af7bdae55eb884ba
Author: ThomasV <thomasv@electrum.org>
Date: Tue, 19 Mar 2019 10:17:14 +0100
lightning tx: remove amount from label
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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: