Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Zacholme7 committed Feb 18, 2025
1 parent 9bb85c7 commit 50f3957
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions anchor/common/qbft/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -827,8 +827,7 @@ where
// We have received a decided message
fn received_decided(&mut self, wrapped_msg: WrappedQbftMessage) {
// Make sure we have a quorum of signatures
if wrapped_msg.signed_message.operator_ids().len() >= self.config().quorum_size() {
self.received_decided(wrapped_msg);
if wrapped_msg.signed_message.operator_ids().len() < self.config().quorum_size() {
return;
}

Expand Down

0 comments on commit 50f3957

Please sign in to comment.