Stub out sprout, sapling key modules

This commit is contained in:
Deirdre Connolly 2020-02-25 18:14:59 -05:00 committed by Deirdre Connolly
parent 8c0b00109f
commit 0998b90392
4 changed files with 41 additions and 0 deletions

4
zebra-chain/src/keys.rs Normal file
View File

@ -0,0 +1,4 @@
//! Key types.
mod sapling;
mod sprout;

View File

@ -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() {}
}

View File

@ -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() {}
}

View File

@ -10,6 +10,7 @@ mod sha256d_writer;
pub mod block;
pub mod equihash_solution;
pub mod keys;
pub mod note_commitment_tree;
pub mod note_encryption;
pub mod proofs;