zebra/zebra-chain/src/sapling.rs

24 lines
483 B
Rust
Raw Normal View History

//! Sapling-related functionality.
mod address;
#[cfg(any(test, feature = "proptest-impl"))]
mod arbitrary;
mod commitment;
mod note;
mod output;
2020-08-17 02:06:38 -07:00
mod spend;
#[cfg(test)]
mod tests;
// XXX clean up these modules
pub mod keys;
pub mod tree;
pub use address::Address;
pub use commitment::{CommitmentRandomness, NoteCommitment, ValueCommitment};
pub use keys::Diversifier;
pub use note::{EncryptedNote, Note, Nullifier, WrappedNoteKey};
pub use output::Output;
pub use spend::Spend;