zebra/zebra-chain/src/sprout.rs

20 lines
355 B
Rust
Raw Normal View History

//! Sprout-related functionality.
#[cfg(any(test, feature = "proptest-impl"))]
mod arbitrary;
2020-08-17 02:06:38 -07:00
mod joinsplit;
#[cfg(test)]
mod tests;
2020-08-17 02:06:38 -07:00
// XXX clean up these modules
pub mod address;
pub mod commitment;
pub mod keys;
pub mod note;
pub mod tree;
2020-08-17 02:06:38 -07:00
pub use joinsplit::JoinSplit;
pub use joinsplit::RandomSeed;
pub use note::{EncryptedNote, Note, Nullifier};