Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Feb 10, 2025
1 parent bcbd49f commit d96fdf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/crates/starknet/test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ async fn run_node<S>(
decisions.fetch_add(1, Ordering::SeqCst);
}
Event::Published(msg) if is_full_node => {
panic!("Full nodes unexpectedly publish a consensus message: {msg:?}");
panic!("Full node unexpectedly published a consensus message: {msg:?}");
}
_ => (),
}
Expand Down
2 changes: 1 addition & 1 deletion code/crates/test/framework/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ async fn run_node<S>(
decisions.fetch_add(1, Ordering::SeqCst);
}
Event::Published(msg) if is_full_node => {
panic!("Full nodes unexpectedly publish a consensus message: {msg:?}");
panic!("Full node unexpectedly published a consensus message: {msg:?}");
}
_ => (),
}
Expand Down

0 comments on commit d96fdf0

Please sign in to comment.