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

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 #39358 passed
...@@ -193,7 +193,7 @@ where ...@@ -193,7 +193,7 @@ where
.transpose()?; .transpose()?;
#[cfg(feature = "native")] #[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"))] #[cfg(not(feature = "native"))]
let executor = sc_service::new_wasm_executor(&config.executor); 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