Skip to content
Snippets Groups Projects
Commit c328d1e6 authored by Koute's avatar Koute Committed by GitHub
Browse files

Companion for Substrate#10394 (#4471)

* Align PVF executor to changes in Substrate

* Update to the newest `substrate`
parent 32bb94af
Branches
No related merge requests found
This diff is collapsed.
......@@ -22,7 +22,6 @@ use sc_executor_common::{
};
use sc_executor_wasmtime::{Config, DeterministicStackLimit, Semantics};
use sp_core::storage::{ChildInfo, TrackedStorageKey};
use sp_wasm_interface::HostFunctions as _;
use std::any::{Any, TypeId};
const CONFIG: Config = Config {
......@@ -114,10 +113,9 @@ pub unsafe fn execute(
let mut ext = ValidationExternalities(extensions);
sc_executor::with_externalities_safe(&mut ext, || {
let runtime = sc_executor_wasmtime::create_runtime_from_artifact(
let runtime = sc_executor_wasmtime::create_runtime_from_artifact::<HostFunctions>(
compiled_artifact,
CONFIG,
HostFunctions::host_functions(),
)?;
runtime.new_instance()?.call(InvokeMethod::Export("validate_block"), params)
})?
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment