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