Skip to content
Snippets Groups Projects

Resolve "Allow native Runtime execution"

Merged Cédric Moreau requested to merge 214-allow-native-runtime-execution into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -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);
Loading