We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faa6484 commit fe083e5Copy full SHA for fe083e5
crates/networking/p2p/net.rs
@@ -53,6 +53,7 @@ pub fn peer_table(signer: SigningKey) -> Arc<Mutex<KademliaTable>> {
53
Arc::new(Mutex::new(KademliaTable::new(local_node_id)))
54
}
55
56
+#[allow(clippy::too_many_arguments)]
57
pub async fn start_network(
58
local_node: Node,
59
tracker: TaskTracker,
@@ -91,6 +92,7 @@ pub async fn start_network(
91
92
));
93
94
95
96
async fn discover_peers(
97
98
@@ -150,6 +152,7 @@ async fn discover_peers(
150
152
151
153
154
155
156
async fn discover_peers_server(
157
158
0 commit comments