typo and docs

This commit is contained in:
Brian Picciano
2025-12-23 18:00:57 +01:00
parent dff4ce2b22
commit d8e9e9b37b
4 changed files with 8 additions and 2 deletions

View File

@@ -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, .. } => {

View File

@@ -956,6 +956,9 @@ Engine:
--engine.account-worker-count <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

View File

@@ -956,6 +956,9 @@ Engine:
--engine.account-worker-count <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

View File

@@ -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"
];