electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 2dd368e76e2bc22d500fe8d35a9b2b6f91e60708
parent 5c1340b7bd8bab9a5beb8e15b7b15ea26a334695
Author: ThomasV <thomasv@electrum.org>
Date:   Thu, 24 Oct 2019 18:45:51 +0200

minor fix: show_transaction params

Diffstat:
Melectrum/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 @@ -587,7 +587,7 @@ class HistoryList(MyTreeView, AcceptFileDragDrop): if not tx: return label = self.wallet.get_label(tx_hash) or None # prefer 'None' if not defined (force tx dialog to hide Description field if missing) - self.parent.show_transaction(tx, label) + self.parent.show_transaction(tx, tx_desc=label) def add_copy_menu(self, menu, idx): cc = menu.addMenu(_("Copy column"))