forest/state_migration/nv22fix/
mod.rs

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