forest/state_migration/nv24/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 `NV24` upgrade.
5mod migration;
6mod power;
7
8/// Run migration for `NV24`. 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::v14::State,
16 fil_actor_system_state::v15::State
17);
18
19impl_system!();
20impl_verifier!();