Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1206,12 +1206,12 @@ Specify the maximum time allowance for creating a new payload. The default value

#### miner.recommit

Time interval to recreate the block being mined. The default value is `2s`.
Time interval to recreate the block being mined. The default value is `100ms`.

<Tabs items={['Syntax', 'Example', 'Environment Variable']}>
<Tabs.Tab>`--miner.recommit=<value>`</Tabs.Tab>
<Tabs.Tab>`--miner.recommit=2s`</Tabs.Tab>
<Tabs.Tab>`GETH_MINER_RECOMMIT=2s`</Tabs.Tab>
<Tabs.Tab>`--miner.recommit=100ms`</Tabs.Tab>
<Tabs.Tab>`GETH_MINER_RECOMMIT=100ms`</Tabs.Tab>
</Tabs>

### Miscellaneous
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The "cost" of a given conditional is *approximately* determined by the number of
<Callout type="info">
Since the sequencer is not compensated for the additional state checks, otherwise through the GAS of the transaction, a configured rate limit is applied to this cost.

To also disincentivize the use of this endpoint for MEV in comparison to `eth_sendRawTransaction`, the conditional is checked against the parent of the latest block.
To also discourage the use of this endpoint for MEV in comparison to `eth_sendRawTransaction`, the conditional is checked against the parent of the latest block.
</Callout>

This conditional is checked once at the RPC layer prior to mempool submission. If rejected against chain state, the RPC will return an error with the following spec
Expand Down