Skip to content

Commit

Permalink
[peoples] fix parachain id generation
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb committed Feb 19, 2025
1 parent 16b20cc commit cb80d67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)>,
Expand Down

0 comments on commit cb80d67

Please sign in to comment.