pub trait LocalStateAccess<T, Balance>where
    T: ConfigSystem,{
    // Required method
    fn load_local_state(
        origin: &T::RuntimeOrigin,
        xtx_id: Option<&T::Hash>
    ) -> Result<LocalStateExecutionView<T, Balance>, DispatchError>;
}

Required Methods§

source

fn load_local_state( origin: &T::RuntimeOrigin, xtx_id: Option<&T::Hash> ) -> Result<LocalStateExecutionView<T, Balance>, DispatchError>

Implementors§

source§

impl<T, Balance> LocalStateAccess<T, Balance> for NoopThreeVmwhere T: ConfigSystem,