From a649f099d3d072b5e90d57740d57aa1687e3236c Mon Sep 17 00:00:00 2001 From: gabrielbosio Date: Mon, 23 Sep 2024 14:51:34 -0300 Subject: [PATCH] Fix typo in 'long' --- operator/mina/lib/src/consensus_state.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operator/mina/lib/src/consensus_state.rs b/operator/mina/lib/src/consensus_state.rs index 0433c2089..78f69a9ad 100644 --- a/operator/mina/lib/src/consensus_state.rs +++ b/operator/mina/lib/src/consensus_state.rs @@ -197,7 +197,7 @@ mod test { let new_tip = valid_proof.bridge_tip_state; let mut old_tip = valid_proof.candidate_chain_states.last().unwrap().clone(); - // Force checking longe fork rule: + // Force checking long fork rule: // Set both `epoch_count` to be the same but set new `lock_checkpoint` of older one to be one less than newer one old_tip.body.consensus_state.epoch_count = new_tip.body.consensus_state.epoch_count; old_tip @@ -251,7 +251,7 @@ mod test { let mut new_tip = valid_proof.bridge_tip_state; let mut old_tip = valid_proof.candidate_chain_states.last().unwrap().clone(); - // Force checking longe fork rule: + // Force checking long fork rule: // Set both `epoch_count` to be the same but set new `lock_checkpoint` of older one to be one less than newer one old_tip.body.consensus_state.epoch_count = new_tip.body.consensus_state.epoch_count; old_tip