Trait BlockExecutionForkProvider
pub trait BlockExecutionForkProvider {
// Required method
fn canonical_fork(&self) -> NumHash;
}
Available on crate feature
provider
only.Expand description
Fork data needed for execution on it.
It contains a canonical fork, the block on what pending chain was forked from.
Required Methods§
fn canonical_fork(&self) -> NumHash
fn canonical_fork(&self) -> NumHash
Return canonical fork, the block on what post state was forked from.
Needed to create state provider.