lighthouse/eth2/utils/ssz/src/signed_root.rs

6 lines
95 B
Rust
Raw Normal View History

2019-03-04 04:47:48 +00:00
use crate::TreeHash;
pub trait SignedRoot: TreeHash {
fn signed_root(&self) -> Vec<u8>;
}