From c6419f199c60742b4edbf595d172833215282335 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Tue, 26 May 2020 14:12:47 -0300 Subject: [PATCH] wip patch --- lbry/wallet/ledger.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lbry/wallet/ledger.py b/lbry/wallet/ledger.py index beb440fc7..0eb77bb58 100644 --- a/lbry/wallet/ledger.py +++ b/lbry/wallet/ledger.py @@ -678,6 +678,8 @@ class Ledger(metaclass=LedgerRegistry): if txid == tx.id and local_height >= height: found = True if not found: + log.info('forcing update on %s', record['address']) + self._update_tasks.add(self.update_history(record['address'], 'force')) log.info("timeout: %s, %s, %s", record['history'], addresses, tx.id) return False return True