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

Verifiable can be verified. ref. https://pkg.go.dev/github.com/ava-labs/avalanchego/vms/components#Verifiable

Required Methods

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

Implementors