Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexagon committed Aug 8, 2024
1 parent f3f3904 commit ca84e8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "everscale-network"
version = "0.5.4"
version = "0.5.5"
description = "Implementation of the network part of the Everscale blockchain"
repository = "https://github.com/broxus/everscale-network"
authors = ["Ivan Kalinin <i.kalinin@dexpa.io>"]
Expand Down
2 changes: 1 addition & 1 deletion src/adnl/node/receiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl Node {
};

let len = match result {
Ok((len, _)) if len == 0 => continue,
Ok((0, _)) => continue,
Ok((len, _)) => len,
Err(e) => {
tracing::warn!("failed to receive data: {e}");
Expand Down

0 comments on commit ca84e8b

Please sign in to comment.