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

bump fat client and bootstrap cargo versions #703

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bootstrap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avail-light-bootstrap"
version = "0.2.1"
version = "0.3.0"
edition = "2021"
description = "Avail network Bootstrap Node for p2p Light Client"

Expand Down
6 changes: 3 additions & 3 deletions bootstrap/src/p2p/event_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ impl EventLoop {
},
connection_id: _,
})) => {
trace!("Identity Received from: {peer_id:?} on listen address: {listen_addrs:?}.");
debug!("Identity Received from: {peer_id:?} on listen address: {listen_addrs:?}.");
let incoming_peer_agent_version = match AgentVersion::from_str(&agent_version) {
Ok(agent) => agent,
Err(e) => {
Expand All @@ -167,7 +167,7 @@ impl EventLoop {
}

if protocols.contains(&self.swarm.behaviour_mut().kademlia.protocol_names()[0]) {
trace!("Adding peer {peer_id} to routing table.");
debug!("Adding peer {peer_id} to routing table.");
for addr in listen_addrs {
self.swarm
.behaviour_mut()
Expand All @@ -176,7 +176,7 @@ impl EventLoop {
}
} else {
// Block and remove non-Avail peers
debug!("Removing and blocking non-avail peer from routing table. Peer: {peer_id}. Agent: {agent_version}. Protocol: {protocol_version}");
debug!("Removing and blocking peer from routing table. Peer: {peer_id}. Agent: {agent_version}. Protocol: {protocol_version}");
self.swarm.behaviour_mut().kademlia.remove_peer(&peer_id);
}
},
Expand Down
2 changes: 1 addition & 1 deletion fat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avail-light-fat"
version = "0.1.0"
version = "1.12.0"
authors.workspace = true
edition = "2021"
repository.workspace = true
Expand Down
Loading