From 41ee0468c32f100266af22130f9f611fa777a69d Mon Sep 17 00:00:00 2001 From: Igor Kozyrev Date: Mon, 20 Sep 2021 12:55:07 +0000 Subject: [PATCH] revert command.rs --- --- 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), )?), -- gitstuff