pub trait CalcExtraHash {
// Required method
fn calc_extra_hash(&self) -> ExtraHashView;
}
Expand description
Trait for calculating the extra hash of a block.
Required Methods§
Sourcefn calc_extra_hash(&self) -> ExtraHashView
fn calc_extra_hash(&self) -> ExtraHashView
Calculates and returns the extra hash of the block as an ExtraHashView
.