forest/state_migration/nv28/mod.rs
1// Copyright 2019-2026 ChainSafe Systems
2// SPDX-License-Identifier: Apache-2.0, MIT
3
4//! This module contains the migration logic for the `NV28` upgrade.
5mod migration;
6
7/// Run migration for `NV28`. This should be the only exported method in this
8/// module.
9#[allow(unused)]
10pub use migration::run_migration;
11
12use crate::{define_system_states, impl_system, impl_verifier};
13
14define_system_states!(
15 fil_actor_system_state::v17::State,
16 fil_actor_system_state::v18::State
17);
18
19impl_system!();
20impl_verifier!();