Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

companion for try-runtime revamp #6187

Merged
merged 15 commits into from
Dec 15, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update
  • Loading branch information
kianenigma committed Dec 14, 2022
commit 0d24e95a9f56cf36bd69e71cf597ed6e9c106f19
2 changes: 1 addition & 1 deletion runtime/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2233,6 +2233,6 @@ mod remote_tests {
.build()
.await
.unwrap();
ext.execute_with(|| Runtime::on_runtime_upgrade());
ext.execute_with(|| Runtime::on_runtime_upgrade(true));
}
}
2 changes: 1 addition & 1 deletion runtime/polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2441,6 +2441,6 @@ mod remote_tests {
.build()
.await
.unwrap();
ext.execute_with(|| Runtime::on_runtime_upgrade());
ext.execute_with(|| Runtime::on_runtime_upgrade(true));
}
}
2 changes: 1 addition & 1 deletion runtime/westend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1832,6 +1832,6 @@ mod remote_tests {
.build()
.await
.unwrap();
ext.execute_with(|| Runtime::on_runtime_upgrade());
ext.execute_with(|| Runtime::on_runtime_upgrade(true));
}
}