tfix #5701 - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit 8c22be87b02152f35485705dcd47ca148d81bb74
 (DIR) parent d480d0b265068ce0cc7a5a279b98e4af85bbc3ee
 (HTM) Author: ThomasV <thomasv@electrum.org>
       Date:   Wed, 16 Oct 2019 11:13:44 +0200
       
       fix #5701
       
       Diffstat:
         M electrum/gui/qt/channel_details.py  |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/electrum/gui/qt/channel_details.py b/electrum/gui/qt/channel_details.py
       t@@ -79,7 +79,7 @@ class ChannelDetailsDialog(QtWidgets.QDialog):
            def do_htlc_added(self, evtname, htlc, lnaddr, direction):
                mapping = self.keyname_rows['inflight']
                mapping[htlc.payment_hash] = len(mapping)
       -        self.folders['inflight'].appendRow(self.make_inflight(lnaddr, htlc, direction))
       +        self.folders['inflight'].appendRow(self.make_htlc_item(htlc, direction))
        
            @QtCore.pyqtSlot(str, float, Direction, UpdateAddHtlc, bytes, bytes)
            def do_ln_payment_completed(self, evtname, date, direction, htlc, preimage, chan_id):