Skip to content

Commit

Permalink
Remove duplicate from MerkleTree
Browse files Browse the repository at this point in the history
  • Loading branch information
dconnolly committed Sep 27, 2019
1 parent b4b7282 commit 19258d6
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions zebra-chain/src/merkle_tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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!();
Expand Down

0 comments on commit 19258d6

Please sign in to comment.