pub trait BlockExecutionForkProvider {
// Required method
fn canonical_fork(&self) -> BlockNumHash;
}
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§
Sourcefn canonical_fork(&self) -> BlockNumHash
fn canonical_fork(&self) -> BlockNumHash
Return canonical fork, the block on what post state was forked from.
Needed to create state provider.