pub trait ExecutorProvider<Block: BlockT> {
    type Executor: CallExecutor<Block>;

    fn executor(&self) -> &Self::Executor;
    fn execution_extensions(&self) -> &ExecutionExtensions<Block>;
}
Expand description

Executor Provider

Required Associated Types§

executor instance

Required Methods§

Get call executor reference.

Get a reference to the execution extensions.

Implementors§