Skip to content

Commit

Permalink
continued -> continue
Browse files Browse the repository at this point in the history
  • Loading branch information
tgeoghegan committed Sep 1, 2023
1 parent d44f3e9 commit 8ff8e52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/topology/ping_pong.rs
Original file line number Diff line number Diff line change
Expand Up @@ -598,15 +598,15 @@ where
} else {
return Err(PingPongError::HostStateMismatch {
found: "finished",
expected: "continued",
expected: "continue",
});
};

let (prep_msg, next_peer_prep_share) = match inbound {
PingPongMessage::Initialize { .. } => {
return Err(PingPongError::PeerMessageMismatch {
found: inbound.variant(),
expected: "continued",
expected: "continue",
});
}
PingPongMessage::Continue {
Expand Down

0 comments on commit 8ff8e52

Please sign in to comment.