Skip to content

Commit

Permalink
Post release upgrade (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszaaa authored Feb 3, 2024
2 parents d699297 + d897437 commit b0c96fb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 122 deletions.
1 change: 0 additions & 1 deletion runtime/common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ use sp_std::{cmp::Ordering, marker::PhantomData, prelude::*};
pub use types::*;

pub mod constants;
pub mod migration;
mod weights;
pub mod xcm_config;

Expand Down
115 changes: 0 additions & 115 deletions runtime/common/src/migration.rs

This file was deleted.

6 changes: 3 additions & 3 deletions runtime/mangata-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ pub type Executive = frame_executive::Executive<
Migrations,
>;

type Migrations = (common_runtime::migration::PalletsVersionsAlignment<Runtime>,);
type Migrations = ();

/// Opaque types. These are used by the CLI to instantiate machinery that don't need to know
/// the specifics of the runtime. They can then be made to be agnostic over specific formats
Expand All @@ -107,10 +107,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("mangata-parachain"),
impl_name: create_runtime_str!("mangata-parachain"),
authoring_version: 15,
spec_version: 003200,
spec_version: 003400,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 003200,
transaction_version: 003400,
state_version: 0,
};

Expand Down
6 changes: 3 additions & 3 deletions runtime/mangata-rococo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub type Executive = frame_executive::Executive<
Migrations,
>;

type Migrations = (common_runtime::migration::PalletsVersionsAlignment<Runtime>,);
type Migrations = ();

/// Opaque types. These are used by the CLI to instantiate machinery that don't need to know
/// the specifics of the runtime. They can then be made to be agnostic over specific formats
Expand Down Expand Up @@ -110,10 +110,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
impl_name: create_runtime_str!("mangata-parachain"),

authoring_version: 14,
spec_version: 003200,
spec_version: 003400,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 003200,
transaction_version: 003400,
state_version: 0,
};

Expand Down

0 comments on commit b0c96fb

Please sign in to comment.