Files
lighthouse/eth2/utils/tree_hash/src/signed_root.rs
2019-04-16 11:14:28 +10:00

6 lines
95 B
Rust

use crate::TreeHash;
pub trait SignedRoot: TreeHash {
fn signed_root(&self) -> Vec<u8>;
}