Skip to content

Commit

Permalink
Remove pub visibility on start_* node functions
Browse files Browse the repository at this point in the history
  • Loading branch information
pool2win committed Nov 26, 2024
1 parent 8caa476 commit 52ea26d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ impl Node {
Ok(())
}

pub async fn start_reliable_sender_receiver(
async fn start_reliable_sender_receiver(
&self,
connection_handle: ConnectionHandle,
connection_receiver: mpsc::Receiver<ReliableNetworkMessage>,
Expand All @@ -291,7 +291,7 @@ impl Node {
(reliable_sender_handle, client_receiver)
}

pub async fn start_connection_event_loop(
async fn start_connection_event_loop(
&self,
peer_addr: String,
reliable_sender_handle: ReliableSenderHandle,
Expand Down

0 comments on commit 52ea26d

Please sign in to comment.