zebra/zebra-chain/src/note_encryption.rs

9 lines
221 B
Rust

//! Note encryption types.
mod memo;
mod sapling;
mod sprout;
/// The randomness used in the Pedersen Hash for note commitment.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct NoteCommitmentRandomness(pub [u8; 32]);