lighthouse/eth2/utils/ssz/src/signed_root.rs
2019-03-04 15:47:48 +11:00

6 lines
95 B
Rust

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