From 943e3ec0b9bbb7d77f2b514e3dc67cd17b0ce507 Mon Sep 17 00:00:00 2001 From: pompon0 Date: Thu, 14 Dec 2023 14:37:03 +0100 Subject: [PATCH] Update node/actors/bft/src/inner.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bruno França --- node/actors/bft/src/inner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/actors/bft/src/inner.rs b/node/actors/bft/src/inner.rs index 0c640a5c..368553b7 100644 --- a/node/actors/bft/src/inner.rs +++ b/node/actors/bft/src/inner.rs @@ -9,7 +9,7 @@ use zksync_consensus_roles::validator; /// to be modified, except by the Consensus struct. #[derive(Debug)] pub(crate) struct ConsensusInner { - /// The communication pipe. This is used to receive inputs and send outputs. + /// The communication pipe. This is used to send outputs. pub(crate) pipe: channel::UnboundedSender, /// The validator's secret key. pub(crate) secret_key: validator::SecretKey,