chore(net): expose max concurrent GetPooledTransactions reqs in cli (#10358)

This commit is contained in:
Emilia Hane
2024-08-22 14:31:57 +02:00
committed by GitHub
parent f2e0bc073a
commit 15810108e8
10 changed files with 160 additions and 46 deletions

18
book/cli/reth/node.md vendored
View File

@ -169,18 +169,28 @@ Networking:
--max-inbound-peers <MAX_INBOUND_PEERS>
Maximum number of inbound requests. default: 30
--max-pending-imports <COUNT>
Max number of transactions to import concurrently.
--max-tx-reqs <COUNT>
Max concurrent `GetPooledTransactions` requests.
[default: 4096]
[default: 130]
--max-seen-tx-history <MAX_SEEN_TX_HISTORY>
--max-tx-reqs-peer <COUNT>
Max concurrent `GetPooledTransactions` requests per peer.
[default: 1]
--max-seen-tx-history <COUNT>
Max number of seen transactions to remember per peer.
Default is 320 transaction hashes.
[default: 320]
--max-pending-imports <COUNT>
Max number of transactions to import concurrently.
[default: 4096]
--pooled-tx-response-soft-limit <BYTES>
Experimental, for usage in research. Sets the max accumulated byte size of transactions
to pack in one response.