From 27ce9d88c35e5d146a4f75a22396b9fe0cf29968 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 4 Mar 2023 09:04:50 +0100 Subject: [PATCH] follow-up 2ed71579c39ab7ace9fc108a38394deb769ac98c: remove wrong assert --- electrum/address_synchronizer.py | 1 - 1 file changed, 1 deletion(-) diff --git a/electrum/address_synchronizer.py b/electrum/address_synchronizer.py index a435c127d..7bd06e45d 100644 --- a/electrum/address_synchronizer.py +++ b/electrum/address_synchronizer.py @@ -778,7 +778,6 @@ class AddressSynchronizer(Logger, EventListener): sent = {} for tx_hash, height in h: hh, pos = self.get_txpos(tx_hash) - assert hh == height d = self.db.get_txo_addr(tx_hash, address) for n, (v, is_cb) in d.items(): received[tx_hash + ':%d'%n] = (height, pos, v, is_cb)