Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct local spec ids #150

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions chain-spec-generator/src/system_parachains_specs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ pub fn bridge_hub_paseo_local_testnet_config() -> Result<Box<dyn ChainSpec>, 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(
Expand All @@ -98,8 +98,8 @@ pub fn people_paseo_local_testnet_config() -> Result<Box<dyn ChainSpec>, 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(
Expand All @@ -123,8 +123,8 @@ pub fn coretime_paseo_local_testnet_config() -> Result<Box<dyn ChainSpec>, 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")
Expand All @@ -144,8 +144,8 @@ pub fn coretime_paseo_tot_config() -> Result<Box<dyn ChainSpec>, 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")
Expand Down