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