From 31ac44dddd05206659cef0f9a931631379694de5 Mon Sep 17 00:00:00 2001 From: f321x Date: Mon, 5 Jan 2026 16:32:22 +0100 Subject: [PATCH] TxEditor: register correct callback on_event_channels_updated doesn't get fired if channels change their state to OPEN. TxEditor needs to use on_event_channel to notice channels coming online. --- electrum/gui/qt/confirm_tx_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/confirm_tx_dialog.py b/electrum/gui/qt/confirm_tx_dialog.py index 9bfcc17fd..3e7fc482e 100644 --- a/electrum/gui/qt/confirm_tx_dialog.py +++ b/electrum/gui/qt/confirm_tx_dialog.py @@ -874,7 +874,7 @@ class TxEditor(WindowModalDialog, QtEventListener, Logger): self.update_submarine_tab() @qt_event_listener - def on_event_channels_updated(self, wallet): + def on_event_channel(self, wallet, _channel): # useful e.g. if the user quickly opens the tab after startup before the channels are initialized if wallet == self.wallet and self.swap_manager and self.swap_manager.is_initialized.is_set(): self.update_submarine_tab()