forest/state_migration/nv21fix/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 `NV21` calibration network fix.
5
6mod migration;
7
8/// Run migration for `NV21` calibration network fix. This should be the only exported method in this
9/// module.
10pub use migration::run_migration;
11
12use crate::{define_system_states, impl_system, impl_verifier};
13
14define_system_states!(
15 fil_actor_system_state::v12::State,
16 fil_actor_system_state::v12::State
17);
18
19impl_system!();
20impl_verifier!();