diff --git a/crates/trie/parallel/src/proof_task.rs b/crates/trie/parallel/src/proof_task.rs index 646a6474f1..8a00c9488f 100644 --- a/crates/trie/parallel/src/proof_task.rs +++ b/crates/trie/parallel/src/proof_task.rs @@ -1661,7 +1661,7 @@ impl StorageProofInput { Self::V2 { hashed_address, targets } } - /// Returns the targetted hashed address. + /// Returns the targeted hashed address. pub const fn hashed_address(&self) -> B256 { match self { Self::Legacy { hashed_address, .. } | Self::V2 { hashed_address, .. } => { diff --git a/docs/vocs/docs/pages/cli/op-reth/node.mdx b/docs/vocs/docs/pages/cli/op-reth/node.mdx index ee1adfee78..ad9efd44a5 100644 --- a/docs/vocs/docs/pages/cli/op-reth/node.mdx +++ b/docs/vocs/docs/pages/cli/op-reth/node.mdx @@ -956,6 +956,9 @@ Engine: --engine.account-worker-count Configure the number of account proof workers in the Tokio blocking pool. If not specified, defaults to the same count as storage workers + --engine.enable-proof-v2 + Enable V2 storage proofs for state root calculations + ERA: --era.enable Enable import from ERA1 files diff --git a/docs/vocs/docs/pages/cli/reth/node.mdx b/docs/vocs/docs/pages/cli/reth/node.mdx index 38b59183e4..11c94575d4 100644 --- a/docs/vocs/docs/pages/cli/reth/node.mdx +++ b/docs/vocs/docs/pages/cli/reth/node.mdx @@ -956,6 +956,9 @@ Engine: --engine.account-worker-count Configure the number of account proof workers in the Tokio blocking pool. If not specified, defaults to the same count as storage workers + --engine.enable-proof-v2 + Enable V2 storage proofs for state root calculations + ERA: --era.enable Enable import from ERA1 files diff --git a/flake.nix b/flake.nix index e8762df411..512b69e366 100644 --- a/flake.nix +++ b/flake.nix @@ -35,7 +35,7 @@ cargoTOML = builtins.fromTOML (builtins.readFile ./Cargo.toml); packageVersion = cargoTOML.workspace.package.version; - rustStable = fenix.packages.${system}.latest.withComponents [ + rustStable = fenix.packages.${system}.stable.withComponents [ "cargo" "rustc" "rust-src" "clippy" ];