Stub out sprout, sapling key modules
This commit is contained in:
parent
8c0b00109f
commit
0998b90392
|
|
@ -0,0 +1,4 @@
|
||||||
|
//! Key types.
|
||||||
|
|
||||||
|
mod sapling;
|
||||||
|
mod sprout;
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
use std::{
|
||||||
|
fmt,
|
||||||
|
io::{self},
|
||||||
|
};
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
use proptest::{array, collection::vec, prelude::*};
|
||||||
|
#[cfg(test)]
|
||||||
|
use proptest_derive::Arbitrary;
|
||||||
|
|
||||||
|
use crate::serialization::{SerializationError, ZcashDeserialize, ZcashSerialize};
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
proptest! {
|
||||||
|
|
||||||
|
//#[test]
|
||||||
|
// fn test() {}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,18 @@
|
||||||
|
use std::{
|
||||||
|
fmt,
|
||||||
|
io::{self},
|
||||||
|
};
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
use proptest::{array, collection::vec, prelude::*};
|
||||||
|
#[cfg(test)]
|
||||||
|
use proptest_derive::Arbitrary;
|
||||||
|
|
||||||
|
use crate::serialization::{SerializationError, ZcashDeserialize, ZcashSerialize};
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
proptest! {
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test() {}
|
||||||
|
}
|
||||||
|
|
@ -10,6 +10,7 @@ mod sha256d_writer;
|
||||||
|
|
||||||
pub mod block;
|
pub mod block;
|
||||||
pub mod equihash_solution;
|
pub mod equihash_solution;
|
||||||
|
pub mod keys;
|
||||||
pub mod note_commitment_tree;
|
pub mod note_commitment_tree;
|
||||||
pub mod note_encryption;
|
pub mod note_encryption;
|
||||||
pub mod proofs;
|
pub mod proofs;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue