mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-07 19:41:20 +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>;
|
||
|
}
|