pub(super) trait PostMigrationCheck<BS: Blockstore>: Send + Sync {
// Required method
fn post_migrate_check(
&self,
store: &BS,
actors_out: &StateTree<BS>,
) -> Result<()>;
}Expand description
Trait defining the interface for actor migration verifier.