Struct sc_service::LocalCallExecutor [−][src]
pub struct LocalCallExecutor<B, E> { /* fields omitted */ }
Call executor that executes methods locally, querying all required data from local backend.
Implementations
impl<B, E> LocalCallExecutor<B, E> where
E: CodeExecutor + RuntimeInfo + Clone + 'static,
[src]
impl<B, E> LocalCallExecutor<B, E> where
E: CodeExecutor + RuntimeInfo + Clone + 'static,
[src]pub fn new(
backend: Arc<B>,
executor: E,
spawn_handle: Box<dyn SpawnNamed>,
client_config: ClientConfig
) -> Result<Self>
[src]
backend: Arc<B>,
executor: E,
spawn_handle: Box<dyn SpawnNamed>,
client_config: ClientConfig
) -> Result<Self>
Creates new instance of local call executor.
Trait Implementations
impl<B, E, Block> CallExecutor<Block> for LocalCallExecutor<B, E> where
B: Backend<Block>,
E: CodeExecutor + RuntimeInfo + Clone + 'static,
Block: BlockT,
[src]
impl<B, E, Block> CallExecutor<Block> for LocalCallExecutor<B, E> where
B: Backend<Block>,
E: CodeExecutor + RuntimeInfo + Clone + 'static,
Block: BlockT,
[src]type Error = E::Error
Externalities error type.
type Backend = B
The backend used by the node.
fn call(
&self,
id: &BlockId<Block>,
method: &str,
call_data: &[u8],
strategy: ExecutionStrategy,
extensions: Option<Extensions>
) -> Result<Vec<u8>>
[src]
&self,
id: &BlockId<Block>,
method: &str,
call_data: &[u8],
strategy: ExecutionStrategy,
extensions: Option<Extensions>
) -> Result<Vec<u8>>
fn contextual_call<'a, IB: Fn() -> Result<()>, EM: Fn(Result<NativeOrEncoded<R>, Self::Error>, Result<NativeOrEncoded<R>, Self::Error>) -> Result<NativeOrEncoded<R>, Self::Error>, R: Encode + Decode + PartialEq, NC: FnOnce() -> Result<R, String> + UnwindSafe>(
&self,
initialize_block_fn: IB,
at: &BlockId<Block>,
method: &str,
call_data: &[u8],
changes: &RefCell<OverlayedChanges>,
storage_transaction_cache: Option<&RefCell<StorageTransactionCache<Block, B::State>>>,
initialize_block: InitializeBlock<'a, Block>,
execution_manager: ExecutionManager<EM>,
native_call: Option<NC>,
recorder: &Option<ProofRecorder<Block>>,
extensions: Option<Extensions>
) -> Result<NativeOrEncoded<R>, Error> where
ExecutionManager<EM>: Clone,
[src]
&self,
initialize_block_fn: IB,
at: &BlockId<Block>,
method: &str,
call_data: &[u8],
changes: &RefCell<OverlayedChanges>,
storage_transaction_cache: Option<&RefCell<StorageTransactionCache<Block, B::State>>>,
initialize_block: InitializeBlock<'a, Block>,
execution_manager: ExecutionManager<EM>,
native_call: Option<NC>,
recorder: &Option<ProofRecorder<Block>>,
extensions: Option<Extensions>
) -> Result<NativeOrEncoded<R>, Error> where
ExecutionManager<EM>: Clone,
fn runtime_version(&self, id: &BlockId<Block>) -> Result<RuntimeVersion>
[src]
fn prove_at_trie_state<S: TrieBackendStorage<HashFor<Block>>>(
&self,
trie_state: &TrieBackend<S, HashFor<Block>>,
overlay: &mut OverlayedChanges,
method: &str,
call_data: &[u8]
) -> Result<(Vec<u8>, StorageProof), Error>
[src]
&self,
trie_state: &TrieBackend<S, HashFor<Block>>,
overlay: &mut OverlayedChanges,
method: &str,
call_data: &[u8]
) -> Result<(Vec<u8>, StorageProof), Error>
fn native_runtime_version(&self) -> Option<&NativeVersion>
[src]
pub fn prove_at_state<S>(
&self,
state: S,
overlay: &mut OverlayedChanges,
method: &str,
call_data: &[u8]
) -> Result<(Vec<u8, Global>, StorageProof), Error> where
S: Backend<<<B as Block>::Header as Header>::Hashing>,
[src]
&self,
state: S,
overlay: &mut OverlayedChanges,
method: &str,
call_data: &[u8]
) -> Result<(Vec<u8, Global>, StorageProof), Error> where
S: Backend<<<B as Block>::Header as Header>::Hashing>,
impl<B, E> Clone for LocalCallExecutor<B, E> where
E: Clone,
[src]
impl<B, E> Clone for LocalCallExecutor<B, E> where
E: Clone,
[src]fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<B, E, Block> GetRuntimeVersion<Block> for LocalCallExecutor<B, E> where
B: Backend<Block>,
E: CodeExecutor + RuntimeInfo + Clone + 'static,
Block: BlockT,
[src]
impl<B, E, Block> GetRuntimeVersion<Block> for LocalCallExecutor<B, E> where
B: Backend<Block>,
E: CodeExecutor + RuntimeInfo + Clone + 'static,
Block: BlockT,
[src]fn native_version(&self) -> &NativeVersion
[src]
fn runtime_version(&self, at: &BlockId<Block>) -> Result<RuntimeVersion, String>
[src]
Auto Trait Implementations
impl<B, E> !RefUnwindSafe for LocalCallExecutor<B, E>
impl<B, E> Send for LocalCallExecutor<B, E> where
B: Send + Sync,
E: Send,
B: Send + Sync,
E: Send,
impl<B, E> Sync for LocalCallExecutor<B, E> where
B: Send + Sync,
E: Sync,
B: Send + Sync,
E: Sync,
impl<B, E> Unpin for LocalCallExecutor<B, E> where
E: Unpin,
E: Unpin,
impl<B, E> !UnwindSafe for LocalCallExecutor<B, E>
Blanket Implementations
impl<T> CheckedConversion for T
[src]
impl<T> CheckedConversion for T
[src]pub fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
[src]
Self: TryFrom<T>,
pub fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
[src]
Self: TryInto<T>,
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<T> SaturatedConversion for T
[src]
impl<T> SaturatedConversion for T
[src]pub fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]pub fn unique_saturated_into(self) -> T
[src]
impl<T> WithSubscriber for T
[src]
impl<T> WithSubscriber for T
[src]pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,