From b4ac3fbfb9406bc95c121383ce341f7273ad5291 Mon Sep 17 00:00:00 2001 From: MagicJoshh Date: Thu, 25 Jul 2024 04:58:31 -0600 Subject: [PATCH] docs: redirect the reth-docs chapter link (#9565) --- docs/crates/network.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: