Update broken links to docs/crates/discv4.md (#5923)

This commit is contained in:
David Kulman
2024-01-03 00:03:55 +01:00
committed by GitHub
parent dcf1d5090f
commit 32a75dd265

View File

@ -8,7 +8,7 @@ Reth's P2P networking consists primarily of 4 ongoing tasks:
- **ETH Requests**: Responds to incoming requests for headers and bodies
- **Network Management**: Handles incoming & outgoing connections with peers, and routes requests between peers and the other tasks
We'll leave most of the discussion of the discovery task for the [discv4](../discv4/README.md) chapter, and will focus on the other three here.
We'll leave most of the discussion of the discovery task for the [discv4](./discv4.md) chapter, and will focus on the other three here.
Let's take a look at how the main Reth CLI (i.e., a default-configured full node) makes use of the P2P layer to explore the primary interfaces and entrypoints into the `network` crate.
@ -168,7 +168,7 @@ The `Swarm` struct glues together incoming connections from peers, managing sess
We'll touch more on the `NetworkManager` shortly! It's perhaps the most important struct in this crate.
More information about the discovery task can be found in the [discv4](../discv4/README.md) chapter.
More information about the discovery task can be found in the [discv4](./discv4.md) chapter.
The ETH requests and transactions task will be explained in their own sections, following this one.