wip patch

This commit is contained in:
Victor Shyba 2020-05-26 14:12:47 -03:00
parent 5a3cd577db
commit c6419f199c

View file

@ -678,6 +678,8 @@ class Ledger(metaclass=LedgerRegistry):
if txid == tx.id and local_height >= height: if txid == tx.id and local_height >= height:
found = True found = True
if not found: 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) log.info("timeout: %s, %s, %s", record['history'], addresses, tx.id)
return False return False
return True return True