commit 8c22be87b02152f35485705dcd47ca148d81bb74
parent d480d0b265068ce0cc7a5a279b98e4af85bbc3ee
Author: ThomasV <thomasv@electrum.org>
Date: Wed, 16 Oct 2019 11:13:44 +0200
fix #5701
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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):