pub trait Sandbox {
type Runtime: Config;
// Required methods
fn execute_with<T>(&mut self, execute: impl FnOnce() -> T) -> T;
fn dry_run<T>(&mut self, action: impl FnOnce(&mut Self) -> T) -> T;
fn register_extension<E: Any + Extension>(&mut self, ext: E);
fn default_actor() -> AccountIdFor<Self::Runtime>;
fn get_metadata() -> RuntimeMetadataPrefixed;
fn convert_account_to_origin(
account: AccountIdFor<Self::Runtime>,
) -> <<Self::Runtime as Config>::RuntimeCall as Dispatchable>::RuntimeOrigin;
fn take_snapshot(&mut self) -> Snapshot;
fn restore_snapshot(&mut self, snapshot: Snapshot);
// Provided methods
fn initialize_block(
_height: BlockNumberFor<Self::Runtime>,
_parent_hash: <Self::Runtime as Config>::Hash,
) { ... }
fn finalize_block(
_height: BlockNumberFor<Self::Runtime>,
) -> <Self::Runtime as Config>::Hash { ... }
fn default_gas_limit() -> Weight { ... }
}
Expand description
Sandbox defines the API of a sandboxed runtime.
Required Associated Types§
Required Methods§
Sourcefn execute_with<T>(&mut self, execute: impl FnOnce() -> T) -> T
fn execute_with<T>(&mut self, execute: impl FnOnce() -> T) -> T
Execute the given externalities.
Sourcefn dry_run<T>(&mut self, action: impl FnOnce(&mut Self) -> T) -> T
fn dry_run<T>(&mut self, action: impl FnOnce(&mut Self) -> T) -> T
Dry run an action without modifying the storage.
Sourcefn register_extension<E: Any + Extension>(&mut self, ext: E)
fn register_extension<E: Any + Extension>(&mut self, ext: E)
Register an extension.
Sourcefn default_actor() -> AccountIdFor<Self::Runtime>
fn default_actor() -> AccountIdFor<Self::Runtime>
Default actor for the sandbox.
Sourcefn get_metadata() -> RuntimeMetadataPrefixed
fn get_metadata() -> RuntimeMetadataPrefixed
Metadata of the runtime.
Sourcefn convert_account_to_origin(
account: AccountIdFor<Self::Runtime>,
) -> <<Self::Runtime as Config>::RuntimeCall as Dispatchable>::RuntimeOrigin
fn convert_account_to_origin( account: AccountIdFor<Self::Runtime>, ) -> <<Self::Runtime as Config>::RuntimeCall as Dispatchable>::RuntimeOrigin
Convert an account to a call origin.
Sourcefn take_snapshot(&mut self) -> Snapshot
fn take_snapshot(&mut self) -> Snapshot
Take a snapshot of the storage.
Sourcefn restore_snapshot(&mut self, snapshot: Snapshot)
fn restore_snapshot(&mut self, snapshot: Snapshot)
Restore the storage from the given snapshot.
Provided Methods§
Sourcefn initialize_block(
_height: BlockNumberFor<Self::Runtime>,
_parent_hash: <Self::Runtime as Config>::Hash,
)
fn initialize_block( _height: BlockNumberFor<Self::Runtime>, _parent_hash: <Self::Runtime as Config>::Hash, )
Initialize a new block at particular height.
Sourcefn finalize_block(
_height: BlockNumberFor<Self::Runtime>,
) -> <Self::Runtime as Config>::Hash
fn finalize_block( _height: BlockNumberFor<Self::Runtime>, ) -> <Self::Runtime as Config>::Hash
Finalize a block at particular height.
fn default_gas_limit() -> Weight
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.