From 4984f33468576a76270a349a236aec6b67a55c31 Mon Sep 17 00:00:00 2001 From: Alejandro Martinez Andres <11448715+al3mart@users.noreply.github.com> Date: Wed, 30 Oct 2024 19:44:25 +0100 Subject: [PATCH] fix: correct local spec ids --- .../src/system_parachains_specs.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/chain-spec-generator/src/system_parachains_specs.rs b/chain-spec-generator/src/system_parachains_specs.rs index 01e3cc1..9a5e51e 100644 --- a/chain-spec-generator/src/system_parachains_specs.rs +++ b/chain-spec-generator/src/system_parachains_specs.rs @@ -73,8 +73,8 @@ pub fn bridge_hub_paseo_local_testnet_config() -> Result, Str .expect("BridgeHubPaseo wasm not available!"), Extensions { relay_chain: "paseo-local".into(), para_id: 1002 }, ) - .with_name("Paseo Bridge Hub Local") - .with_id("paseo-bridge-hub-local") + .with_name("Bridge Hub Paseo Local") + .with_id("bridge-hub-paseo-local") .with_chain_type(ChainType::Local) .with_protocol_id("bh-pas") .with_genesis_config_patch( @@ -98,8 +98,8 @@ pub fn people_paseo_local_testnet_config() -> Result, String> people_paseo_runtime::WASM_BINARY.expect("PeoplePaseo wasm not available!"), Extensions { relay_chain: "paseo-local".into(), para_id: 1004 }, ) - .with_name("Paseo People Local") - .with_id("paseo-people-local") + .with_name("People Paseo Local") + .with_id("people-paseo-local") .with_chain_type(ChainType::Local) .with_protocol_id("pc-pas") .with_genesis_config_patch( @@ -123,8 +123,8 @@ pub fn coretime_paseo_local_testnet_config() -> Result, Strin coretime_paseo_runtime::WASM_BINARY.expect("CoretimePaseo wasm not available!"), Extensions { relay_chain: "paseo-local".into(), para_id: 1005 }, ) - .with_name("Paseo Coretime Local") - .with_id("paseo-coretime-local") + .with_name("Coretime Paseo Local") + .with_id("coretime-paseo-local") .with_chain_type(ChainType::Local) .with_protocol_id("ct-pas") .with_genesis_config_preset_name("local_testnet") @@ -144,8 +144,8 @@ pub fn coretime_paseo_tot_config() -> Result, String> { coretime_paseo_runtime::WASM_BINARY.expect("CoretimePaseo wasm not available!"), Extensions { relay_chain: "paseo".into(), para_id: 1005 }, ) - .with_name("Paseo Coretime Local") - .with_id("paseo-coretime-local") + .with_name("Coretime Paseo Local") + .with_id("coretime-paseo-local") .with_chain_type(ChainType::Live) .with_protocol_id("ct-pas") .with_genesis_config_preset_name("tot")