From bbe4aa47ea57af41f680b6193225e69f5bd1ef9a Mon Sep 17 00:00:00 2001 From: teor Date: Mon, 26 Oct 2020 23:11:13 +1000 Subject: [PATCH] Fix whitespace for rustfmt --- zebra-consensus/src/block.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/zebra-consensus/src/block.rs b/zebra-consensus/src/block.rs index e08e0023..223a7fad 100644 --- a/zebra-consensus/src/block.rs +++ b/zebra-consensus/src/block.rs @@ -178,7 +178,6 @@ 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 _);