docs: update docs (#15997)

This commit is contained in:
FT
2025-04-30 10:00:48 +02:00
committed by GitHub
parent ca78d66620
commit 86c552c011
3 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ To enable JSON-RPC namespaces on the HTTP server, pass each namespace separated
reth node --http --http.api eth,net,trace reth node --http --http.api eth,net,trace
``` ```
You can pass the `all` option, which is a convenient wrapper for the all the JSON-RPC namespaces `admin,debug,eth,net,trace,txpool,web3,rpc` on the HTTP server: You can pass the `all` option, which is a convenient wrapper for all the JSON-RPC namespaces `admin,debug,eth,net,trace,txpool,web3,rpc` on the HTTP server:
```bash ```bash
reth node --http --http.api all reth node --http --http.api all

View File

@@ -188,7 +188,7 @@ impl<Payload: PayloadTypes> Display for BeaconEngineMessage<Payload> {
} }
} }
/// A clonable sender type that can be used to send engine API messages. /// A cloneable sender type that can be used to send engine API messages.
/// ///
/// This type mirrors consensus related functions of the engine API. /// This type mirrors consensus related functions of the engine API.
#[derive(Debug, Clone)] #[derive(Debug, Clone)]

View File

@@ -21,7 +21,7 @@ pub trait Suite {
/// - `BlockchainTests/TransitionTests` /// - `BlockchainTests/TransitionTests`
fn suite_name(&self) -> String; fn suite_name(&self) -> String;
/// Load an run each contained test case. /// Load and run each contained test case.
/// ///
/// # Note /// # Note
/// ///