From de602cca21a5ed8fab1305ad7206ab6feb914532 Mon Sep 17 00:00:00 2001 From: Zacholme7 Date: Wed, 19 Feb 2025 13:55:51 +0000 Subject: [PATCH] spelling --- anchor/common/qbft/src/lib.rs | 2 +- anchor/common/qbft/src/qbft_types.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anchor/common/qbft/src/lib.rs b/anchor/common/qbft/src/lib.rs index 7a752eae..86d56a05 100644 --- a/anchor/common/qbft/src/lib.rs +++ b/anchor/common/qbft/src/lib.rs @@ -832,7 +832,7 @@ where } // All message and signature verification has already succeeded. Regardless of what state this instance is - // at, we have all of the information necessary to mark is as complete + // at, we have all of the information necessary to mark it as complete self.state = InstanceState::Complete; self.completed = Some(Completed::Success(wrapped_msg.qbft_message.root)); self.aggregated_commit = Some(wrapped_msg.signed_message); diff --git a/anchor/common/qbft/src/qbft_types.rs b/anchor/common/qbft/src/qbft_types.rs index f040aa86..5dee20fa 100644 --- a/anchor/common/qbft/src/qbft_types.rs +++ b/anchor/common/qbft/src/qbft_types.rs @@ -130,7 +130,7 @@ pub enum Message { Prepare(OperatorId, UnsignedSSVMessage), /// A commit message to be sent on the network. Commit(OperatorId, UnsignedSSVMessage), - /// Round change message to be send on the network + /// Round change message to be sent on the network RoundChange(OperatorId, UnsignedSSVMessage), }