Skip to content

Commit

Permalink
Fix typo in 'long'
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbosio committed Sep 23, 2024
1 parent af63afb commit a649f09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions operator/mina/lib/src/consensus_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a649f09

Please sign in to comment.