pub trait StateReader: Send + Sync {
type Receipt: Send + Sync;
// Required method
fn get_state(
&self,
block: BlockNumber,
) -> ProviderResult<Option<ExecutionOutcome<Self::Receipt>>>;
}
Expand description
This just receives state, or [ExecutionOutcome
], from the provider