Skip to content

Commit

Permalink
Prepare shell for polkadot (#143)
Browse files Browse the repository at this point in the history
* bump spec version, rotate sudo key

* regenesis with spec v4 and new sudo key

* bump shell crate version
  • Loading branch information
brenzi authored Jul 6, 2022
1 parent f0bc619 commit e0c025b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 6 additions & 9 deletions polkadot-parachains/chain-specs/integritee-polkadot.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion polkadot-parachains/shell-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = 'shell-runtime'
description = "The Integritee shell parachain runtime"
# major.minor revision must match collator node. patch should match spec_version
version = '1.5.3'
version = '1.5.4'
authors = ["Integritee AG <hello@integritee.network>"]
homepage = "https://integritee.network/"
repository = "https://github.com/integritee-network/parachain"
Expand Down
4 changes: 2 additions & 2 deletions polkadot-parachains/shell-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("integritee-parachain"),
impl_name: create_runtime_str!("integritee-shell"),
authoring_version: 0,
spec_version: 3,
spec_version: 4,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 0,
Expand Down Expand Up @@ -362,7 +362,7 @@ construct_runtime! {
Aura: pallet_aura::{Pallet, Config<T>} = 23,
AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 24,

CumulusXcm: cumulus_pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin} =32,
CumulusXcm: cumulus_pallet_xcm::{Pallet, Call, Storage, Event<T>, Origin} = 32,
}
}

Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ struct IntegriteeKeys;

impl IntegriteeKeys {
fn root() -> AccountId {
public_from_ss58::<sr25519::Public>("5EqGFRTN3m2kLpoaThANra5REs5C7B2rfLmmZv2nbJsxaTe1")
public_from_ss58::<sr25519::Public>("2K7GtWP55g3rETCDGLBuxbWBSaXQyCswbvEdcHFXG6fkt9RP")
.into()
}
fn authorities() -> Vec<AuraId> {
Expand Down

0 comments on commit e0c025b

Please sign in to comment.