From aa2d3de2a76572ee80ec9603b42a8f77f16dbcf2 Mon Sep 17 00:00:00 2001 From: teor Date: Mon, 22 Jun 2020 20:44:19 +1000 Subject: [PATCH] consensus: Update a BlockVerifier comment --- zebra-consensus/src/verify/block.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/zebra-consensus/src/verify/block.rs b/zebra-consensus/src/verify/block.rs index 322bdfe3564..a2791d2a0fc 100644 --- a/zebra-consensus/src/verify/block.rs +++ b/zebra-consensus/src/verify/block.rs @@ -51,6 +51,7 @@ pub(crate) fn node_time_check( } struct BlockVerifier { + /// The underlying `ZebraState`, possibly wrapped in other services. state_service: S, }