--- a/node/cli/src/command.rs +++ b/node/cli/src/command.rs @@ -43,8 +43,7 @@ ) -> std::result::Result, String> { Ok(match id { "dev" => Box::new(chain_spec::development_config(para_id)), - "westend-local" => Box::new(chain_spec::westend_local_testnet_config(para_id)), - "" | "local" => Box::new(chain_spec::rococo_local_testnet_config(para_id)), + "" | "local" => Box::new(chain_spec::local_testnet_config(para_id)), path => Box::new(chain_spec::ChainSpec::from_json_file( std::path::PathBuf::from(path), )?),