pub trait Signable {
// Required method
fn signature_hash(&self) -> B256;
}Expand description
Trait for types that can be cryptographically signed.
Required Methods§
Sourcefn signature_hash(&self) -> B256
fn signature_hash(&self) -> B256
Calculate the signature hash for this payload.