consensus: add remaining checks trace counter to tx verifier

This commit is contained in:
Henry de Valence 2020-11-20 22:48:21 -08:00 committed by teor
parent a2a70e1fc1
commit e4f38582fd
1 changed files with 1 additions and 0 deletions

View File

@ -219,6 +219,7 @@ where
// Finally, wait for all asynchronous checks to complete // Finally, wait for all asynchronous checks to complete
// successfully, or fail verification if they error. // successfully, or fail verification if they error.
while let Some(check) = async_checks.next().await { while let Some(check) = async_checks.next().await {
tracing::trace!(?check, remaining = async_checks.len());
check?; check?;
} }