Remove duplicate from MerkleTree

This commit is contained in:
Deirdre Connolly 2019-09-26 23:22:44 -04:00 committed by Deirdre Connolly
parent b4b72829b2
commit 19258d6f54
1 changed files with 0 additions and 6 deletions

View File

@ -16,12 +16,6 @@ pub struct MerkleTree<T> {
leaves: Vec<T>,
}
impl<T> MerkleTree<T> {
pub fn get_root(&self) -> Sha256 {
unimplemented!();
}
}
impl<Transaction> ZcashSerialize for MerkleTree<Transaction> {
fn zcash_serialize<W: io::Write>(&self, writer: W) -> Result<(), SerializationError> {
unimplemented!();