From 1bd396006bb2070bc7d494895fb84c36908eac7c Mon Sep 17 00:00:00 2001 From: agureev Date: Wed, 8 Jul 2026 16:36:05 +0400 Subject: [PATCH] docs: fix typos --- lez/wallet/src/lib.rs | 2 +- lez/wallet/src/storage/key_chain.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lez/wallet/src/lib.rs b/lez/wallet/src/lib.rs index b1a71995..1e4ba380 100644 --- a/lez/wallet/src/lib.rs +++ b/lez/wallet/src/lib.rs @@ -848,7 +848,7 @@ impl WalletCore { for (ciph_id, encrypted_data) in message.encrypted_private_post_states.iter().enumerate() { - // If already decrypted or the tag does nto match, skip. + // If already decrypted or the tag does not match, skip. if handled.contains(&ciph_id) || encrypted_data.view_tag != view_tag { continue; } diff --git a/lez/wallet/src/storage/key_chain.rs b/lez/wallet/src/storage/key_chain.rs index 3ceefeee..51b3762c 100644 --- a/lez/wallet/src/storage/key_chain.rs +++ b/lez/wallet/src/storage/key_chain.rs @@ -378,7 +378,7 @@ impl UserKeyChain { let Some(account_id) = index.account_for(old_nullifier) else { continue; }; - // Try decrypting the commitment connectted to the nullifier and get the next + // Try decrypting the commitment connected to the nullifier and get the next // nullifier to await. if let Some(new_nullifier) = self.apply_nullifier_update(account_id, message, i) { // Update the index to await for the new state of the account, i.e.