We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a40853 commit 2c37bc2Copy full SHA for 2c37bc2
pallets/subtensor/src/migrations/migrate_reset_unactive_sn.rs
@@ -60,10 +60,6 @@ pub fn migrate_reset_unactive_sn<T: Config>() -> Weight {
60
weight = weight.saturating_add(T::DbWeight::get().writes(7));
61
}
62
63
- // Run total issuance migration
64
- let ti_w = crate::migrations::migrate_init_total_issuance::migrate_init_total_issuance::<T>();
65
- weight = weight.saturating_add(ti_w);
66
-
67
// Mark Migration as Completed
68
HasMigrationRun::<T>::insert(&migration_name, true);
69
weight = weight.saturating_add(T::DbWeight::get().writes(1));
0 commit comments