From e35204c253ffafb6e0f014464da5da6d23446034 Mon Sep 17 00:00:00 2001 From: dni Date: Thu, 9 Jul 2026 09:31:41 +0200 Subject: [PATCH] fixup! --- lnbits/utils/electrum.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lnbits/utils/electrum.py b/lnbits/utils/electrum.py index a1219fb18..f7ff231ea 100644 --- a/lnbits/utils/electrum.py +++ b/lnbits/utils/electrum.py @@ -844,9 +844,7 @@ class AddressTracker: seen = {e.tx_hash for e in history} for m in mempool_r: if m.tx_hash not in seen: - history.append( - HistoryEntry(tx_hash=m.tx_hash, height=0, fee=m.fee) - ) + history.append(HistoryEntry(tx_hash=m.tx_hash, height=0, fee=m.fee)) await callback( OnchainAddressEvent( address=address,