Add SignedRoot methods

This commit is contained in:
Paul Hauner
2019-03-04 15:47:48 +11:00
parent 4a57aec472
commit 94122a7334
4 changed files with 114 additions and 3 deletions

View File

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