6 lines
95 B
Rust
6 lines
95 B
Rust
|
use crate::TreeHash;
|
||
|
|
||
|
pub trait SignedRoot: TreeHash {
|
||
|
fn signed_root(&self) -> Vec<u8>;
|
||
|
}
|