diff --git a/src/rust/include/rust/orchard/wallet.h b/src/rust/include/rust/orchard/wallet.h index dcf65c5e1..72bd1ff1f 100644 --- a/src/rust/include/rust/orchard/wallet.h +++ b/src/rust/include/rust/orchard/wallet.h @@ -294,7 +294,7 @@ typedef void (*push_spend_t)(void* callbackReceiver, const RawOrchardActionSpend typedef void (*push_output_t)(void* callbackReceiver, const RawOrchardActionOutput data); /** - * Trial-decrypts the specfied Orchard bundle, and uses the provided callbacks to pass + * Trial-decrypts the specified Orchard bundle, and uses the provided callbacks to pass * `RawOrchardActionSpend` and `RawOrchardActionOutput` values (corresponding to the * actions of that bundle) to the provided result receiver. * diff --git a/src/rust/src/wallet.rs b/src/rust/src/wallet.rs index 8623a8b26..e2be5ed12 100644 --- a/src/rust/src/wallet.rs +++ b/src/rust/src/wallet.rs @@ -179,7 +179,7 @@ pub enum BundleLoadError { /// the provided IVK. ActionDecryptionFailed(usize), /// The wallet did not contain the full viewing key corresponding - /// to the incoming viewing key that successfullly decrypted a + /// to the incoming viewing key that successfully decrypted a /// note. FvkNotFound(IncomingViewingKey), /// An action index identified as potentially spending one of our diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index d505c1867..f41c70890 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -4769,7 +4769,7 @@ UniValue z_sendmany(const UniValue& params, bool fHelp) "5. privacyPolicy (string, optional, default=\"LegacyCompat\") Policy for what information leakage is acceptable.\n" " One of the following strings:\n" " - \"FullPrivacy\": Only allow fully-shielded transactions (involving a single shielded value pool).\n" - " - \"LegacyCompat\": If the transaction involves any Unified Addressess, this is equivalent to\n" + " - \"LegacyCompat\": If the transaction involves any Unified Addresses, this is equivalent to\n" " \"FullPrivacy\". Otherwise, this is equivalent to \"AllowFullyTransparent\".\n" " - \"AllowRevealedAmounts\": Allow funds to cross between shielded value pools, revealing the amount\n" " that crosses pools.\n"