|
| 1 | +use super::*; |
| 2 | +use crate::HasMigrationRun; |
| 3 | +use frame_support::{traits::Get, weights::Weight}; |
| 4 | +use scale_info::prelude::string::String; |
| 5 | + |
| 6 | +pub fn migrate_set_first_emission_block_number<T: Config>() -> Weight { |
| 7 | + let migration_name = b"migrate_set_first_emission_block_number".to_vec(); |
| 8 | + |
| 9 | + let mut weight = T::DbWeight::get().reads(1); |
| 10 | + if HasMigrationRun::<T>::get(&migration_name) { |
| 11 | + log::info!( |
| 12 | + "Migration '{:?}' has already run. Skipping.", |
| 13 | + String::from_utf8_lossy(&migration_name) |
| 14 | + ); |
| 15 | + return weight; |
| 16 | + } |
| 17 | + |
| 18 | + log::info!( |
| 19 | + "Running migration '{:?}'", |
| 20 | + String::from_utf8_lossy(&migration_name) |
| 21 | + ); |
| 22 | + |
| 23 | + // ------------------------------ |
| 24 | + // Step 1: Set the first emission block for all subnets except root |
| 25 | + // ------------------------------ |
| 26 | + let netuids = Pallet::<T>::get_all_subnet_netuids(); |
| 27 | + let current_block_number = Pallet::<T>::get_current_block_as_u64(); |
| 28 | + for netuid in netuids.iter() { |
| 29 | + if *netuid != 0 { |
| 30 | + FirstEmissionBlockNumber::<T>::insert(netuid, current_block_number); |
| 31 | + } |
| 32 | + } |
| 33 | + |
| 34 | + // ------------------------------ |
| 35 | + // Step 2: Mark Migration as Completed |
| 36 | + // ------------------------------ |
| 37 | + |
| 38 | + HasMigrationRun::<T>::insert(&migration_name, true); |
| 39 | + weight = weight.saturating_add(T::DbWeight::get().reads(2)); |
| 40 | + |
| 41 | + if netuids.is_empty() { |
| 42 | + weight = weight.saturating_add(T::DbWeight::get().writes(1_u64)); |
| 43 | + } else { |
| 44 | + weight = weight.saturating_add(T::DbWeight::get().writes(netuids.len() as u64)); |
| 45 | + } |
| 46 | + |
| 47 | + log::info!( |
| 48 | + "Migration '{:?}' completed successfully.", |
| 49 | + String::from_utf8_lossy(&migration_name) |
| 50 | + ); |
| 51 | + |
| 52 | + weight |
| 53 | +} |
0 commit comments