From 8c22be87b02152f35485705dcd47ca148d81bb74 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 16 Oct 2019 11:13:44 +0200 Subject: [PATCH] fix #5701 --- electrum/gui/qt/channel_details.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/channel_details.py b/electrum/gui/qt/channel_details.py index 17c2fbd8a..5593ff2b1 100644 --- a/electrum/gui/qt/channel_details.py +++ b/electrum/gui/qt/channel_details.py @@ -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):