multiversx_chain_vm/executor_impl/
we_executor_disabled.rs

1use multiversx_chain_vm_executor::Executor;
2
3use crate::host::runtime::RuntimeWeakRef;
4
5pub fn new_experimental_executor(_runtime_ref: RuntimeWeakRef) -> Box<dyn Executor + Send + Sync> {
6    panic!("ExperimentalExecutor not available, need to activate features = [\"wasmer-experimental\"] in multiversx-sc-scenario or multiversx-chain-vm")
7}