Infra: fix for full test suite error (#5012)

This commit is contained in:
Julien Maffre 2023-02-15 13:30:39 +00:00 коммит произвёл GitHub
Родитель 14628b82b9
Коммит 499c88a868
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -701,7 +701,7 @@ class Network:
if not skip_verification and self.txs is not None:
LOG.info("Verifying that all committed txs can be read before shutdown")
log_capture = []
self.txs.verify(log_capture=log_capture)
self.txs.verify(network=self, log_capture=log_capture)
self.txs.verify_range(log_capture=log_capture)
if verbose_verification:
flush_info(log_capture, None)