Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(avalanche-types): bump up rpcchainvm protocol version to 32 #157

Merged
merged 10 commits into from
Feb 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix lint
Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
  • Loading branch information
gyuho committed Feb 22, 2024
commit 44299c51f4560a41c595462c42f224a1d2244c91
5 changes: 2 additions & 3 deletions core/network/examples/peer_outbound_ping.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
use std::{
array,
env::args,
io,
net::{IpAddr, SocketAddr},
str::FromStr,
time::{Duration, SystemTime},
time::Duration,
};

use avalanche_types::{ids::Id, message};
use avalanche_types::message;
use network::peer::outbound;

/// cargo run --example peer_outbound_ping -- [PEER IP] [STAKING PORT]
Expand Down
Loading