forest/state_migration/nv26fix/
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 `NV26 fix` that happened on calibration
5//! network after the `NV26` upgrade (but before it landed on mainnet). Read more details on the
6//! issue [here](https://github.com/filecoin-project/community/discussions/74#discussioncomment-12720764).
7mod migration;
8
9/// Run migration for `NV26fix`. 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::v16::State,
17    fil_actor_system_state::v16::State
18);
19
20impl_system!();
21impl_verifier!();