diff --git a/docs/crates/network.md b/docs/crates/network.md index 9e381877f..a6ac24305 100644 --- a/docs/crates/network.md +++ b/docs/crates/network.md @@ -649,7 +649,7 @@ fn on_bodies_request( ## Transactions Task The transactions task listens for, requests, and propagates transactions both from the node's peers, and those that are added locally (e.g., submitted via RPC). Note that this task focuses solely on the network communication involved with Ethereum transactions, we will talk more about the structure of the transaction pool itself -in the [transaction-pool](../../../ethereum/transaction-pool/README.md) chapter. +in the [transaction-pool](https://reth.rs/docs/reth_transaction_pool/index.html) chapter. Again, like the network management and ETH requests tasks, the transactions task is implemented as an endless future that runs as a background task on a standalone `tokio::task`. It's represented by the `TransactionsManager` struct: