Skip to content

Commit 30c6c18

Browse files
committed
docs: update NetworkActor V2 module documentation to reflect protocol changes
- Expanded the list of P2P protocols in the documentation to include Identify and mDNS. - Clarified the retention of mDNS for local network discovery, essential for development. - Removed references to NetworkSupervisor, Kademlia DHT, and QUIC as they are no longer part of V2.
1 parent 1d80022 commit 30c6c18

File tree

1 file changed

+3
-2
lines changed
  • app/src/actors_v2/network

1 file changed

+3
-2
lines changed

app/src/actors_v2/network/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
//! NetworkActor V2 Module
22
//!
33
//! Two-Actor P2P networking system with simplified protocols:
4-
//! - NetworkActor: P2P protocols (Gossipsub, Request-Response)
4+
//! - NetworkActor: P2P protocols (Gossipsub, Request-Response, Identify, mDNS)
55
//! - SyncActor: Blockchain synchronization logic
66
//!
7-
//! Removed from V1: NetworkSupervisor, Kademlia DHT, mDNS, QUIC, actor_system dependencies
7+
//! Removed from V1: NetworkSupervisor, Kademlia DHT, QUIC, actor_system dependencies
8+
//! Retained: mDNS for local network discovery (essential for local development)
89
910
pub mod network_actor;
1011
pub mod sync_actor;

0 commit comments

Comments
 (0)