We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52837aa commit 2733265Copy full SHA for 2733265
1 file changed
README.md
@@ -135,6 +135,10 @@ after the migration. [`OnRuntimeUpgrade::pre_upgrade`] returns a [`Vec<u8>`] tha
135
arbitrary encoded data (usually some pre-upgrade state) which will be passed to
136
[`OnRuntimeUpgrade::pre_upgrade`] after upgrading and used for post checking.
137
138
+**Note on Multi-Block Migrations (MBM):** If the runtime uses MBMs, the standard
139
+`pre_upgrade` and `post_upgrade` checks might be skipped by the executive. To
140
+force these hooks to run synchronously for testing, use the `--disable-mbm-checks` flag.
141
+
142
### [`VersionedMigration`]
143
144
It is strongly suggested to use [`VersionedMigration`] when writing custom migrations for
0 commit comments