From cd2f52e2d933f8ba693d71f01f62068480ac0ba3 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 6 Jun 2025 12:35:41 +0200 Subject: [PATCH] follow-up 5610a94537453ceb89990f0f146d594960021b37 --- electrum/lnwatcher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/lnwatcher.py b/electrum/lnwatcher.py index 4895c7bba..46f3a438a 100644 --- a/electrum/lnwatcher.py +++ b/electrum/lnwatcher.py @@ -63,9 +63,9 @@ class LNWatcher(Logger, EventListener): await self.trigger_callbacks() @event_listener - async def on_event_adb_added_tx(self, wallet): + async def on_event_adb_added_tx(self, adb, tx_hash, tx): # called if we add local tx - if wallet.adb != self.adb: + if adb != self.adb: return await self.trigger_callbacks()