diff --git a/chain-spec-generator/src/relay_chain_specs.rs b/chain-spec-generator/src/relay_chain_specs.rs index 67ba0ba..e49508d 100644 --- a/chain-spec-generator/src/relay_chain_specs.rs +++ b/chain-spec-generator/src/relay_chain_specs.rs @@ -229,14 +229,14 @@ fn paseo_development_config_genesis() -> serde_json::Value { ) } -/// Polkadot development config (single validator Alice) +/// Paseo development config (single validator Alice) pub fn paseo_development_config() -> Result, String> { Ok(Box::new( PaseoChainSpec::builder( - paseo_runtime::WASM_BINARY.ok_or("Polkadot development wasm not available")?, + paseo_runtime::WASM_BINARY.ok_or("Paseo development wasm not available")?, Default::default(), ) - .with_name("Polakdot Development") + .with_name("Paseo Development") .with_id("paseo-dev") .with_chain_type(ChainType::Development) .with_genesis_config_patch(paseo_development_config_genesis()) @@ -254,14 +254,14 @@ fn paseo_local_testnet_genesis() -> serde_json::Value { ) } -/// Polkadot local testnet config (multivalidator Alice + Bob) +/// Paseo local testnet config (multivalidator Alice + Bob) pub fn paseo_local_testnet_config() -> Result, String> { Ok(Box::new( PaseoChainSpec::builder( - paseo_runtime::WASM_BINARY.ok_or("Polkadot development wasm not available")?, + paseo_runtime::WASM_BINARY.ok_or("Paseo development wasm not available")?, Default::default(), ) - .with_name("Polkadot Local Testnet") + .with_name("Paseo Local Testnet") .with_id("paseo-local") .with_chain_type(ChainType::Local) .with_genesis_config_patch(paseo_local_testnet_genesis()) diff --git a/relay/paseo/Cargo.toml b/relay/paseo/Cargo.toml index e4c0352..1065829 100644 --- a/relay/paseo/Cargo.toml +++ b/relay/paseo/Cargo.toml @@ -2,7 +2,7 @@ name = "paseo-runtime" build = "build.rs" repository.workspace = true -version.workspace = true +version = "1.2.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/system-parachains/asset-hub-paseo/Cargo.toml b/system-parachains/asset-hub-paseo/Cargo.toml index 0f3b6a8..288666c 100644 --- a/system-parachains/asset-hub-paseo/Cargo.toml +++ b/system-parachains/asset-hub-paseo/Cargo.toml @@ -6,7 +6,7 @@ edition.workspace = true license.workspace = true name = "asset-hub-paseo-runtime" repository.workspace = true -version.workspace = true +version = "1.1.2" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }