pub trait CallExecutor<B: BlockT>: RuntimeVersionOf {
    type Error: Error;
    type Backend: Backend<B>;

    // Required methods
    fn execution_extensions(&self) -> &ExecutionExtensions<B>;
    fn call(
        &self,
        at_hash: B::Hash,
        method: &str,
        call_data: &[u8],
        context: CallContext
    ) -> Result<Vec<u8>, Error>;
    fn contextual_call(
        &self,
        at_hash: B::Hash,
        method: &str,
        call_data: &[u8],
        changes: &RefCell<OverlayedChanges<HashingFor<B>>>,
        proof_recorder: &Option<ProofRecorder<B>>,
        call_context: CallContext,
        extensions: &RefCell<Extensions>
    ) -> Result<Vec<u8>>;
    fn runtime_version(&self, at_hash: B::Hash) -> Result<RuntimeVersion, Error>;
    fn prove_execution(
        &self,
        at_hash: B::Hash,
        method: &str,
        call_data: &[u8]
    ) -> Result<(Vec<u8>, StorageProof), Error>;
}
Expand description

Method call executor.

Required Associated Types§

source

type Error: Error

Externalities error type.

source

type Backend: Backend<B>

The backend used by the node.

Required Methods§

source

fn execution_extensions(&self) -> &ExecutionExtensions<B>

Returns the ExecutionExtensions.

source

fn call( &self, at_hash: B::Hash, method: &str, call_data: &[u8], context: CallContext ) -> Result<Vec<u8>, Error>

Execute a call to a contract on top of state in a block of given hash.

No changes are made.

source

fn contextual_call( &self, at_hash: B::Hash, method: &str, call_data: &[u8], changes: &RefCell<OverlayedChanges<HashingFor<B>>>, proof_recorder: &Option<ProofRecorder<B>>, call_context: CallContext, extensions: &RefCell<Extensions> ) -> Result<Vec<u8>>

Execute a contextual call on top of state in a block of a given hash.

No changes are made. Before executing the method, passed header is installed as the current header of the execution context.

source

fn runtime_version(&self, at_hash: B::Hash) -> Result<RuntimeVersion, Error>

Extract RuntimeVersion of given block

No changes are made.

source

fn prove_execution( &self, at_hash: B::Hash, method: &str, call_data: &[u8] ) -> Result<(Vec<u8>, StorageProof), Error>

Prove the execution of the given method.

No changes are made.

Implementors§