Skip to content
Snippets Groups Projects
Commit fc1fe8f8 authored by Cédric Moreau's avatar Cédric Moreau
Browse files

Resolves #214 "Allow native Runtime execution" (!300)

* fix: new_native_or_wasm_executor was broken
parent 43c696c2
No related branches found
No related tags found
1 merge request!300Resolve "Allow native Runtime execution"
Pipeline #39366 waiting for manual action
......@@ -193,7 +193,7 @@ where
.transpose()?;
#[cfg(feature = "native")]
let executor = sc_service::new_native_or_wasm_executor(&config.executor);
let executor = sc_service::new_native_or_wasm_executor(&config);
#[cfg(not(feature = "native"))]
let executor = sc_service::new_wasm_executor(&config.executor);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment