tlightning tx: remove amount from label - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 9983578df0d69390d58e92e0af448f1664d0dc6c
DIR parent 93e8d4f953056a7affc198c5af7bdae55eb884ba
HTML Author: ThomasV <thomasv@electrum.org>
Date: Tue, 19 Mar 2019 10:17:14 +0100
lightning tx: remove amount from label
Diffstat:
M electrum/gui/qt/history_list.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py
t@@ -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: