Function std::execution::run_external
pub fn run_external(load_target: ContractId) -> !
Expand description
Load and run the contract with the provided ContractId
.
Contract code will be loaded using LDC
and jumped into.
Unlike a normal contract call, the context of the contract running
run_external
is retained for the loaded code.
As this function never returns to the original code that calls it, it returns !
.