zebra/zebra-chain/src/keys/sapling.rs

21 lines
319 B
Rust
Raw Normal View History

2020-03-13 14:38:42 -07:00
//! Sapling key types
2020-02-25 15:14:59 -08:00
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() {}
}