docs: redirect the reth-docs chapter link (#9565)

This commit is contained in:
MagicJoshh
2024-07-25 04:58:31 -06:00
committed by GitHub
parent d06149aa4d
commit b4ac3fbfb9

View File

@ -649,7 +649,7 @@ fn on_bodies_request(
## Transactions Task ## 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 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: 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: