diff --git a/docs/crates/network.md b/docs/crates/network.md index 894d85b200..9fae041702 100644 --- a/docs/crates/network.md +++ b/docs/crates/network.md @@ -209,13 +209,15 @@ The `NetworkHandle` struct is a client for the network management task that can [File: crates/net/network/src/network.rs](https://github.com/paradigmxyz/reth/blob/1563506aea09049a85e5cc72c2894f3f7a371581/crates/net/network/src/network.rs) ```rust,ignore -struct NetworkInner { +struct NetworkInner { /// Number of active peer sessions the node's currently handling. num_active_peers: Arc, /// Sender half of the message channel to the [`NetworkManager`]. - to_manager_tx: UnboundedSender, + to_manager_tx: UnboundedSender>, /// The local address that accepts incoming connections. listener_address: Arc>, + /// The secret key used for authenticating sessions. + secret_key: SecretKey, /// The identifier used by this node. local_peer_id: PeerId, /// Access to all the nodes