Skip to content

Commit b6998c7

Browse files
committed
integrated with runtime
1 parent 1f99109 commit b6998c7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

runtime/cere-dev/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
173173
// and set impl_version to 0. If only runtime
174174
// implementation changes and behavior does not, then leave spec_version as
175175
// is and increment impl_version.
176-
spec_version: 73175,
176+
spec_version: 73176,
177177
impl_version: 0,
178178
apis: RUNTIME_API_VERSIONS,
179179
transaction_version: 27,
@@ -1807,7 +1807,7 @@ parameter_types! {
18071807
pub const MaxPoolsToMigrate: u32 = 250;
18081808
}
18091809

1810-
type Migrations = ();
1810+
type Migrations = (pallet_ddc_clusters::migrations::v6::MigrateToV6<Runtime>,);
18111811

18121812
/// Executive: handles dispatch to the various modules.
18131813
pub type Executive = frame_executive::Executive<

runtime/cere/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
163163
// and set impl_version to 0. If only runtime
164164
// implementation changes and behavior does not, then leave spec_version as
165165
// is and increment impl_version.
166-
spec_version: 73175,
166+
spec_version: 73176,
167167
impl_version: 0,
168168
apis: RUNTIME_API_VERSIONS,
169169
transaction_version: 27,
@@ -1797,6 +1797,7 @@ pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, Tx
17971797
type Migrations = (
17981798
pallet_ddc_clusters::migrations::v4::MigrateToV4<Runtime>,
17991799
pallet_ddc_clusters::migrations::v5::MigrateToV5<Runtime>,
1800+
pallet_ddc_clusters::migrations::v6::MigrateToV6<Runtime>,
18001801
);
18011802

18021803
parameter_types! {

0 commit comments

Comments
 (0)