mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
docs: fix typos (#17624)
This commit is contained in:
@@ -43,7 +43,7 @@ Disconnects from a peer if the connection exists. Returns a `bool` indicating wh
|
||||
|
||||
## `admin_addTrustedPeer`
|
||||
|
||||
Adds the given peer to a list of trusted peers, which allows the peer to always connect, even if there would be no room for it otherwise.
|
||||
Adds the given peer to a list of trusted peers, which allows the peer to always connect, even if there is no room for it otherwise.
|
||||
|
||||
It returns a `bool` indicating whether the peer was added to the list or not.
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ Returns the structured logs created during the execution of EVM between two bloc
|
||||
|
||||
## `debug_traceBlock`
|
||||
|
||||
The `debug_traceBlock` method will return a full stack trace of all invoked opcodes of all transaction that were included in this block.
|
||||
The `debug_traceBlock` method will return a full stack trace of all invoked opcodes of all transactions that were included in this block.
|
||||
|
||||
This expects an RLP-encoded block.
|
||||
|
||||
@@ -93,7 +93,7 @@ The `debug_traceTransaction` debugging method will attempt to run the transactio
|
||||
|
||||
## `debug_traceCall`
|
||||
|
||||
The `debug_traceCall` method lets you run an `eth_call` within the context of the given block execution using the final state of parent block as the base.
|
||||
The `debug_traceCall` method lets you run an `eth_call` within the context of the given block execution using the final state of the parent block as the base.
|
||||
|
||||
The first argument (just as in `eth_call`) is a transaction request.
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ description: How to run Reth on Ethereum mainnet and testnets.
|
||||
|
||||
# Running Reth on Ethereum Mainnet or testnets
|
||||
|
||||
Reth is an [_execution client_](https://ethereum.org/en/developers/docs/nodes-and-clients/#execution-clients). After Ethereum's transition to Proof of Stake (aka the Merge) it became required to run a [_consensus client_](https://ethereum.org/en/developers/docs/nodes-and-clients/#consensus-clients) along your execution client in order to sync into any "post-Merge" network. This is because the Ethereum execution layer now outsources consensus to a separate component, known as the consensus client.
|
||||
Reth is an [_execution client_](https://ethereum.org/en/developers/docs/nodes-and-clients/#execution-clients). After Ethereum's transition to Proof of Stake (aka the Merge) it became required to run a [_consensus client_](https://ethereum.org/en/developers/docs/nodes-and-clients/#consensus-clients) along with your execution client in order to sync into any "post-Merge" network. This is because the Ethereum execution layer now outsources consensus to a separate component, known as the consensus client.
|
||||
|
||||
Consensus clients decide what blocks are part of the chain, while execution clients only validate that transactions and blocks are valid in themselves and with respect to the world state. In other words, execution clients execute blocks and transactions and check their validity, while consensus clients determine which valid blocks should be part of the chain. Therefore, running a consensus client in parallel with the execution client is necessary to ensure synchronization and participation in the network.
|
||||
|
||||
@@ -77,7 +77,7 @@ If you don't intend on running validators on your node you can add:
|
||||
--disable-deposit-contract-sync
|
||||
```
|
||||
|
||||
The `--checkpoint-sync-url` argument value can be replaced with any checkpoint sync endpoint from a [community maintained list](https://eth-clients.github.io/checkpoint-sync-endpoints/#mainnet).
|
||||
The `--checkpoint-sync-url` argument value can be replaced with any checkpoint sync endpoint from a [community-maintained list](https://eth-clients.github.io/checkpoint-sync-endpoints/#mainnet).
|
||||
|
||||
Your Reth node should start receiving "fork choice updated" messages, and begin syncing the chain.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user