forest/state_migration/nv22/
mod.rs

1// Copyright 2019-2025 ChainSafe Systems
2// SPDX-License-Identifier: Apache-2.0, MIT
3
4//! This module contains the migration logic for the `NV22` upgrade.
5//! The corresponding Go implementation can be found here:
6//! <https://github.com/filecoin-project/go-state-types/blob/master/builtin/v12/migration/top.go>
7
8mod market;
9mod migration;
10mod miner;
11
12/// Run migration for `NV22`. This should be the only exported method in this
13/// module.
14pub use migration::run_migration;
15
16use crate::{define_system_states, impl_system, impl_verifier};
17
18define_system_states!(
19    fil_actor_system_state::v12::State,
20    fil_actor_system_state::v13::State
21);
22
23impl_system!();
24impl_verifier!();