From b9e5edd704534648bb4b016f216955ed176f447f Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 23 Nov 2019 14:51:39 +0100 Subject: [PATCH] fix #5728 --- electrum/gui/qt/channel_details.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electrum/gui/qt/channel_details.py b/electrum/gui/qt/channel_details.py index a941864f0..a92dc907a 100644 --- a/electrum/gui/qt/channel_details.py +++ b/electrum/gui/qt/channel_details.py @@ -84,6 +84,8 @@ class ChannelDetailsDialog(QtWidgets.QDialog): @QtCore.pyqtSlot(str, float, Direction, UpdateAddHtlc, bytes, bytes) def do_ln_payment_completed(self, evtname, date, direction, htlc, preimage, chan_id): + if chan_id != self.chan.channel_id: + return self.move('inflight', 'settled', htlc.payment_hash) self.update_sent_received()