Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Co #12341: Use try-runtime feature #1759

Merged
merged 11 commits into from
Oct 20, 2022
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/master' into oty-check-rust-feat…
…ures
  • Loading branch information
ggwpez committed Oct 19, 2022
commit 9db807ac587e21f9887dee69cb90a054513b0d55
2 changes: 1 addition & 1 deletion parachain-template/node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ pub fn run() -> Result<()> {
.map_err(|e| format!("Error: {:?}", e))?;

runner.async_run(|config| {
Ok((cmd.run::<Block, TemplateRuntimeExecutor>(config), task_manager))
Ok((cmd.run::<Block, ParachainNativeExecutor>(config), task_manager))
})
},
#[cfg(not(feature = "try-runtime"))]
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.