Skip to content

Commit a97f6db

Browse files
authored
add xcm migration for xcm v5 (#2926)
1 parent 20c819c commit a97f6db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runtime/acala/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1998,7 +1998,7 @@ pub type Executive = frame_executive::Executive<
19981998
>;
19991999

20002000
#[allow(unused_parens)]
2001-
type Migrations = ();
2001+
type Migrations = (pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,);
20022002

20032003
#[cfg(feature = "runtime-benchmarks")]
20042004
#[macro_use]

runtime/karura/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2005,7 +2005,7 @@ pub type Executive = frame_executive::Executive<
20052005
>;
20062006

20072007
#[allow(unused_parens)]
2008-
type Migrations = ();
2008+
type Migrations = (pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,);
20092009

20102010
#[cfg(feature = "runtime-benchmarks")]
20112011
#[macro_use]

0 commit comments

Comments
 (0)