mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 12:11:59 +00:00
6 lines
95 B
Rust
6 lines
95 B
Rust
use crate::TreeHash;
|
|
|
|
pub trait SignedRoot: TreeHash {
|
|
fn signed_root(&self) -> Vec<u8>;
|
|
}
|