File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
parachain/runtime/heima/src Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ jobs:
143
143
# Store the command in a variable so we can log it
144
144
COMMAND="./try-runtime \
145
145
--runtime $RUNTIME_BLOB_PATH \
146
- on-runtime-upgrade --disable-mbm-checks --blocktime 12000000 \
146
+ on-runtime-upgrade --disable-mbm-checks --blocktime 12000 \
147
147
live --uri ${{ matrix.runtime.uri }}"
148
148
149
149
# Echo the command before running it, for debugging purposes
Original file line number Diff line number Diff line change @@ -144,6 +144,12 @@ pub type CheckedExtrinsic =
144
144
/// The payload being signed in transactions.
145
145
pub type SignedPayload = generic:: SignedPayload < RuntimeCall , SignedExtra > ;
146
146
147
+ /// Migrations to apply on runtime upgrade.
148
+ pub type Migrations = (
149
+ // permanent
150
+ pallet_xcm:: migration:: MigrateToLatestXcmVersion < Runtime > ,
151
+ ) ;
152
+
147
153
/// Executive: handles dispatch to the various modules.
148
154
pub type Executive = frame_executive:: Executive <
149
155
Runtime ,
@@ -157,6 +163,7 @@ pub type Executive = frame_executive::Executive<
157
163
// It was reverse order before.
158
164
// See the comment before collation related pallets too.
159
165
AllPalletsWithSystem ,
166
+ Migrations ,
160
167
> ;
161
168
162
169
impl fp_self_contained:: SelfContainedCall for RuntimeCall {
@@ -231,7 +238,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
231
238
impl_name : create_runtime_str ! ( "heima" ) ,
232
239
authoring_version : 1 ,
233
240
// same versioning-mechanism as polkadot: use last digit for minor updates
234
- spec_version : 9242 ,
241
+ spec_version : 9243 ,
235
242
impl_version : 0 ,
236
243
apis : RUNTIME_API_VERSIONS ,
237
244
transaction_version : 2 ,
You can’t perform that action at this time.
0 commit comments