Skip to content

Commit

Permalink
release: v5.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kilpatty committed Mar 13, 2023
1 parent 36bd2d8 commit d31cc75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stratum-server"
version = "5.5.0"
version = "5.5.1"
authors = ["Sean Kilgarriff [email protected]"]
rust-version = "1.65"
edition = "2021"
Expand Down
4 changes: 1 addition & 3 deletions server/src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,8 @@ impl<State: Clone> Session<State> {

debug!("Sending message: {}", serde_json::to_string(&message)?);

let msg = SendInformation::Json(serde_json::to_string(&message)?);

//@todo implement Display on SendInformation.
// trace!("Sending message: {}", &msg_string);
let msg = SendInformation::Json(serde_json::to_string(&message)?);

//@todo it may make sense to keep the sender inside of session here - not sure why it's in
//connection like the way it is.
Expand Down

0 comments on commit d31cc75

Please sign in to comment.