forest/state_migration/nv25/
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 `NV25` upgrade.
5mod evm;
6mod migration;
7mod miner;
8
9/// Run migration for `NV25`. 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::v15::State,
17    fil_actor_system_state::v16::State
18);
19
20impl_system!();
21impl_verifier!();