mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Make transaction manager param configurable from cli (#6594)
Co-authored-by: Emilia Hane <elsaemiliaevahane@gmail.com> Co-authored-by: Bjerg <onbjerg@users.noreply.github.com> Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
17
book/cli/reth/node.md
vendored
17
book/cli/reth/node.md
vendored
@ -129,6 +129,18 @@ Networking:
|
||||
--max-inbound-peers <MAX_INBOUND_PEERS>
|
||||
Maximum number of inbound requests. default: 30
|
||||
|
||||
--pooled-tx-response-soft-limit <BYTES>
|
||||
Soft limit for the byte size of a [`PooledTransactions`](reth_eth_wire::PooledTransactions) response on assembling a [`GetPooledTransactions`](reth_eth_wire::GetPooledTransactions) request. Spec'd at 2 MiB.
|
||||
|
||||
<https://github.com/ethereum/devp2p/blob/master/caps/eth.md#protocol-messages>.
|
||||
|
||||
[default: 2097152]
|
||||
|
||||
--pooled-tx-pack-soft-limit <BYTES>
|
||||
Default soft limit for the byte size of a [`PooledTransactions`](reth_eth_wire::PooledTransactions) response on assembling a [`GetPooledTransactions`](reth_eth_wire::PooledTransactions) request. This defaults to less than the [`SOFT_LIMIT_BYTE_SIZE_POOLED_TRANSACTIONS_RESPONSE`], at 2 MiB, used when assembling a [`PooledTransactions`](reth_eth_wire::PooledTransactions) response. Default is 128 KiB
|
||||
|
||||
[default: 131072]
|
||||
|
||||
RPC:
|
||||
--http
|
||||
Enable the HTTP-RPC server
|
||||
@ -331,6 +343,11 @@ TxPool:
|
||||
|
||||
[default: 100]
|
||||
|
||||
--txpool.max_tx_input_bytes <MAX_TX_INPUT_BYTES>
|
||||
Maximum size a single transaction can have
|
||||
|
||||
[default: 131072]
|
||||
|
||||
--txpool.nolocals
|
||||
Flag to disable local transaction exemptions
|
||||
|
||||
|
||||
Reference in New Issue
Block a user