URI: 
       tadd 'view log' action for LN payments in tx history - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 895f9daded603332c2ebeda686b6515cdcb25591
   DIR parent d4ab4b37b76d9b21fb679cbda906ada52c99e964
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Sun, 24 Jan 2021 11:06:08 +0100
       
       add 'view log' action for LN payments in tx history
       
       Diffstat:
         M electrum/gui/qt/history_list.py     |       4 ++++
       
       1 file changed, 4 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py
       t@@ -663,6 +663,10 @@ class HistoryList(MyTreeView, AcceptFileDragDrop):
                    cc = self.add_copy_menu(menu, idx)
                    cc.addAction(_("Payment Hash"), lambda: self.place_text_on_clipboard(tx_item['payment_hash'], title="Payment Hash"))
                    cc.addAction(_("Preimage"), lambda: self.place_text_on_clipboard(tx_item['preimage'], title="Preimage"))
       +            key = tx_item['payment_hash']
       +            log = self.wallet.lnworker.logs.get(key)
       +            if log:
       +                menu.addAction(_("View log"), lambda: self.parent.invoice_list.show_log(key, log))
                    menu.exec_(self.viewport().mapToGlobal(position))
                    return
                tx_hash = tx_item['txid']