From 5e95d11fd98f6b27e79078315fb8aedd7f5418c0 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Fri, 19 Mar 2021 19:55:58 -0400 Subject: [PATCH] Orchard: fix typos --- zebra-chain/src/orchard/note/ciphertexts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zebra-chain/src/orchard/note/ciphertexts.rs b/zebra-chain/src/orchard/note/ciphertexts.rs index 52966e0a3..5de5be687 100644 --- a/zebra-chain/src/orchard/note/ciphertexts.rs +++ b/zebra-chain/src/orchard/note/ciphertexts.rs @@ -4,7 +4,7 @@ use crate::serialization::{serde_helpers, SerializationError, ZcashDeserialize, /// A ciphertext component for encrypted output notes. /// -/// Corresponds to the Orcahrd 'encCiphertext's +/// Corresponds to the Orchard 'encCiphertext's #[derive(Deserialize, Serialize)] pub struct EncryptedNote(#[serde(with = "serde_helpers::BigArray")] pub [u8; 580]); @@ -53,7 +53,7 @@ impl ZcashDeserialize for EncryptedNote { /// A ciphertext component for encrypted output notes. /// -/// Corresponds to Orcahrd's 'outCiphertext' +/// Corresponds to Orchard's 'outCiphertext' #[derive(Deserialize, Serialize)] pub struct WrappedNoteKey(#[serde(with = "serde_helpers::BigArray")] pub [u8; 80]);