From a141c336abb6935d98a9472014517faaf1798e51 Mon Sep 17 00:00:00 2001 From: teor Date: Mon, 26 Oct 2020 23:11:52 +1000 Subject: [PATCH] Actually fix whitespace --- zebra-consensus/src/block.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/zebra-consensus/src/block.rs b/zebra-consensus/src/block.rs index 223a7fad5..6102c417d 100644 --- a/zebra-consensus/src/block.rs +++ b/zebra-consensus/src/block.rs @@ -178,6 +178,7 @@ where while let Some(result) = async_checks.next().await { result.map_err(VerifyBlockError::Transaction)?; } + // Update the metrics after all the validation is finished tracing::trace!("verified block"); metrics::gauge!("block.verified.block.height", height.0 as _);