Add signed_root to tree_hash crate

This commit is contained in:
Paul Hauner
2019-04-16 11:14:28 +10:00
parent d840d6e2d4
commit 024b9e315a
4 changed files with 105 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
use crate::TreeHash;
pub trait SignedRoot: TreeHash {
fn signed_root(&self) -> Vec<u8>;
}