Little more detail to sapling::note::EncryptedNote docstring

This commit is contained in:
Deirdre Connolly 2020-08-28 00:30:02 -04:00 committed by Deirdre Connolly
parent d6eecbe935
commit cfc60936ce
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,8 @@ use proptest::{arbitrary::any, prelude::*};
use crate::serialization::{serde_helpers, SerializationError, ZcashDeserialize, ZcashSerialize};
/// A ciphertext component for encrypted output notes.
///
/// Corresponds to the Sapling 'encCiphertext's
#[derive(Deserialize, Serialize)]
pub struct EncryptedNote(#[serde(with = "serde_helpers::BigArray")] pub [u8; 580]);