From 05cf680d2cab195ff3b0048cb22368e26985e218 Mon Sep 17 00:00:00 2001 From: Dmitry Novikov Date: Wed, 27 Sep 2023 17:45:38 +0400 Subject: [PATCH] fix(typo): Compilation of node with `vara-native` only feature (#3367) --- node/cli/src/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/cli/src/command.rs b/node/cli/src/command.rs index 491f27559d4..6e571242efc 100644 --- a/node/cli/src/command.rs +++ b/node/cli/src/command.rs @@ -120,7 +120,7 @@ impl SubstrateCli for Cli { // Vara specs. #[cfg(feature = "vara-runtime")] - (.., true) => Box::new(chain_spec::gear::ChainSpec::from_json_file(path)?), + (.., true) => Box::new(chain_spec::vara::ChainSpec::from_json_file(path)?), #[cfg(not(feature = "vara-runtime"))] (.., true) => return Err("Vara runtime is not available. Please compile the node with `-F vara-native` to enable it.".into()), }