From cb80d6794ed5f7b137a80764241c124a016e2242 Mon Sep 17 00:00:00 2001 From: Christian Langenbacher Date: Wed, 19 Feb 2025 22:45:53 +0100 Subject: [PATCH] [peoples] fix parachain id generation --- .../runtimes/people/people-rococo/src/genesis_config_presets.rs | 2 +- .../people/people-westend/src/genesis_config_presets.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cumulus/parachains/runtimes/people/people-rococo/src/genesis_config_presets.rs b/cumulus/parachains/runtimes/people/people-rococo/src/genesis_config_presets.rs index 955dd75d5140..312262d41a9f 100644 --- a/cumulus/parachains/runtimes/people/people-rococo/src/genesis_config_presets.rs +++ b/cumulus/parachains/runtimes/people/people-rococo/src/genesis_config_presets.rs @@ -25,7 +25,7 @@ use sp_keyring::Sr25519Keyring; use testnet_parachains_constants::rococo::{currency::UNITS as ROC, xcm_version::SAFE_XCM_VERSION}; const PEOPLE_ROCOCO_ED: Balance = ExistentialDeposit::get(); -const PEOPLE_PARA_ID: ParaId = ParaId::from(1004); +const PEOPLE_PARA_ID: ParaId = ParaId::new(1004); fn people_rococo_genesis( invulnerables: Vec<(AccountId, AuraId)>, diff --git a/cumulus/parachains/runtimes/people/people-westend/src/genesis_config_presets.rs b/cumulus/parachains/runtimes/people/people-westend/src/genesis_config_presets.rs index 3611e21cd7c2..ca9217f2d88c 100644 --- a/cumulus/parachains/runtimes/people/people-westend/src/genesis_config_presets.rs +++ b/cumulus/parachains/runtimes/people/people-westend/src/genesis_config_presets.rs @@ -27,7 +27,7 @@ use testnet_parachains_constants::westend::{ }; const PEOPLE_WESTEND_ED: Balance = ExistentialDeposit::get(); -const PEOPLE_PARA_ID: ParaId = ParaId::from(1004); +const PEOPLE_PARA_ID: ParaId = ParaId::new(1004); fn people_westend_genesis( invulnerables: Vec<(AccountId, AuraId)>,