pub trait Verifiable {
    fn verify(&self) -> Result<()>;
}
Expand description

Required Methods§

Verifies the block or vertex. The protocol must ensure that its parents has already been verified.

Implementors§