Skip to main content

ExecutionState

Trait ExecutionState 

Source
pub trait ExecutionState:
    Storage
    + RuntimeObjectResolver
    + SuiResolver {
    // Required method
    fn as_child_resolver(&self) -> &dyn RuntimeObjectResolver;
}
Expand description

Interface with the store necessary to execute a programmable transaction

Required Methods§

Source

fn as_child_resolver(&self) -> &dyn RuntimeObjectResolver

Implementors§

Source§

impl<T> ExecutionState for T
where T: Storage + RuntimeObjectResolver + SuiResolver,