Skip to content

Commit

Permalink
fix: missing relay_chain ?
Browse files Browse the repository at this point in the history
  • Loading branch information
al3mart committed Aug 1, 2024
1 parent 8c187a3 commit b193542
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions chain-spec-generator/src/system_parachains_specs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ pub fn asset_hub_paseo_local_testnet_config() -> Result<Box<dyn ChainSpec>, Stri
.with_name("Asset Hub Paseo Local")
.with_id("asset-hub-paseo-local")
.with_chain_type(ChainType::Local)
.with_protocol_id("ah-paseo")
.with_protocol_id("ah-pas")
.with_genesis_config_patch(asset_hub_paseo_local_genesis(1000.into()))
.with_properties(properties)
.build(),
Expand Down Expand Up @@ -225,7 +225,7 @@ pub fn bridge_hub_paseo_config() -> Result<Box<dyn ChainSpec>, String> {
.with_name("Paseo Bridge Hub")
.with_id("paseo-bridge-hub")
.with_chain_type(ChainType::Live)
.with_protocol_id("bh-paseo")
.with_protocol_id("bh-pas")
.with_genesis_config_patch(bridge_hub_paseo_local_genesis(1002.into()))
.with_properties(properties)
.build(),
Expand All @@ -246,7 +246,7 @@ pub fn bridge_hub_paseo_local_testnet_config() -> Result<Box<dyn ChainSpec>, Str
.with_name("Paseo Bridge Hub Local")
.with_id("paseo-bridge-hub-local")
.with_chain_type(ChainType::Local)
.with_protocol_id("bh-paseo")
.with_protocol_id("bh-pas")
.with_genesis_config_patch(bridge_hub_paseo_local_genesis(1002.into()))
.with_properties(properties)
.build(),
Expand Down
2 changes: 1 addition & 1 deletion chain-specs/bridge-hub-paseo.plain.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"chainType": "Live",
"bootNodes": [],
"telemetryEndpoints": null,
"protocolId": "bh-paseo",
"protocolId": "bh-pas",
"properties": {
"ss58Format": 42,
"tokenDecimals": 10,
Expand Down
6 changes: 4 additions & 2 deletions chain-specs/bridge-hub-paseo.raw.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
"chainType": "Live",
"bootNodes": [],
"telemetryEndpoints": null,
"protocolId": "bh-paseo",
"protocolId": "bh-pas",
"properties": {
"ss58Format": 42,
"tokenDecimals": 10,
"tokenSymbol": "PAS"
},
"relay_chain": "paseo",
"para_id": 1002,
"codeSubstitutes": {},
"genesis": {
"raw": {
Expand Down Expand Up @@ -72,4 +74,4 @@
"childrenDefault": {}
}
}
}
}

0 comments on commit b193542

Please sign in to comment.