Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- master
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-dev*'
- '[0-9]+.[0-9]+.[0-9]+-*'
pull_request:
branches: [master]
workflow_dispatch:
Expand Down
20 changes: 10 additions & 10 deletions polkadot-parachains/chain-specs/integritee-paseo.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions polkadot-parachains/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ struct IntegriteeKeys;

impl IntegriteeKeys {
fn root() -> AccountId {
pub_sr25519("2JcYbKMfEGidntYP1LpPWsCMxFvUbjaPyipRViat4Sn5nuqm").into()
pub_sr25519("2LbX62auYSYpQEXc7fuLTUGE4TFUDNBrrfV5Q9UACLAtkx9K").into()
}
fn authorities() -> Vec<AuraId> {
vec![
pub_sr25519("5GZJjbPPD9u6NDgK1ApYmbyGs7EBX4HeEz2y2CD38YJxjvQH").into(),
pub_sr25519("5CcSd1GZus6Jw7rP47LLqMMmtr2KeXCH6W11ZKk1LbCQ9dPY").into(),
pub_sr25519("5FsECrDjBXrh5hXmN4PhQfNPbjYYwwW7edu2UQ8G5LR1JFuH").into(),
pub_sr25519("5HBdSEnswkqm6eoHzzX5PCeKoC15CCy88vARrT8XMaRRuyaE").into(),
pub_sr25519("5GGxVLYTXS7JZAwVzisdXbsugHSD6gtDb3AT3MVzih9jTLQT").into(),
pub_sr25519("5DRUaCDxuYgWjwQTFweNjaa9vDV2BLdfUQnQmH2ZcE9ApEyo").into(),
pub_sr25519("5DFGrJHNmkBBzpWejJsiJuiFuLigMnwBb633yYPWZj22b4WY").into(),
pub_sr25519("5GKrMfoMxvNWYVpsrdgQWWFWWNWjyoWNKffKSKh1HZN3PNnU").into(),
pub_sr25519("5FUDAMxi5oysjMxaQxvgWyKKPD1xVP1NNEE4asXxqpP25VkK").into(),
pub_sr25519("5FBkLxk3U8StVnJfXbqoBRtN9qxwsPMWhaRWY3uUpEnQQQhz").into(),
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const KUSAMA_PARA_ID: u32 = 2015;
const KUSAMA_SWAP_PARA_ID: u32 = 2267;
const POLKADOT_PARA_ID: u32 = 2039;
const MOONBASE_PARA_ID: u32 = 2015;
const PASEO_PARA_ID: u32 = 2015;
const PASEO_PARA_ID: u32 = 2025; //temporary mod. should be 2015

trait IdentifyChain {
fn is_shell(&self) -> bool;
Expand Down