This commit is contained in:
2026-01-24 19:50:41 -04:00
parent a918c5564d
commit 4c12136470
6 changed files with 7 additions and 6 deletions

3
qt.py
View File

@@ -131,6 +131,7 @@ from electrum.gui.qt.util import (
from electrum.i18n import _
from electrum.logging import Logger, get_logger
from electrum.network import BestEffortRequestFailed, Network, TxBroadcastError
from electrum.payment_identifier import PaymentIdentifier
from electrum.plugin import hook, run_hook
from electrum.transaction import SerializationError, Transaction, tx_from_any
from electrum.util import (
@@ -174,7 +175,7 @@ class Plugin(BalPlugin, Logger):
@hook
def init_qt(self, gui_object):
self.logger.info("HOOK init qt")
self.logger.info("HOOK bal init qt")
try:
self.gui_object = gui_object
for window in gui_object.windows: