From 4697397c01e7b2dab693225e26f46f57d6510ef1 Mon Sep 17 00:00:00 2001 From: sashaodessa <140454972+sashaodessa@users.noreply.github.com> Date: Wed, 3 Sep 2025 17:34:56 +0200 Subject: [PATCH 1/2] Update http.proto --- crates/cli/proto/eth2-signer-api/google/api/http.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli/proto/eth2-signer-api/google/api/http.proto b/crates/cli/proto/eth2-signer-api/google/api/http.proto index 2bd3a19b..285d7a3e 100644 --- a/crates/cli/proto/eth2-signer-api/google/api/http.proto +++ b/crates/cli/proto/eth2-signer-api/google/api/http.proto @@ -33,7 +33,7 @@ message Http { // **NOTE:** All service configuration rules follow "last one wins" order. repeated HttpRule rules = 1; - // When set to true, URL path parmeters will be fully URI-decoded except in + // When set to true, URL path parameters will be fully URI-decoded except in // cases of single segment matches in reserved expansion, where "%2F" will be // left encoded. // From ed2c77182aae6d4601a2650a79885080e17efa62 Mon Sep 17 00:00:00 2001 From: sashaodessa <140454972+sashaodessa@users.noreply.github.com> Date: Wed, 3 Sep 2025 17:39:27 +0200 Subject: [PATCH 2/2] Update keystore.rs --- crates/eth2_keystore/src/keystore.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/eth2_keystore/src/keystore.rs b/crates/eth2_keystore/src/keystore.rs index b200f138..14eb7a5a 100644 --- a/crates/eth2_keystore/src/keystore.rs +++ b/crates/eth2_keystore/src/keystore.rs @@ -57,7 +57,7 @@ pub const DKLEN: u32 = 32; pub const IV_SIZE: usize = 16; /// The byte size of a SHA256 hash. pub const HASH_SIZE: usize = 32; -/// The default iteraction count, `c`, for PBKDF2. +/// The default iteration count, `c`, for PBKDF2. pub const DEFAULT_PBKDF2_C: u32 = 262_144; #[derive(Debug, PartialEq)]