Skip to content

Commit 3ec3366

Browse files
committed
Migrated pallet funding for block number provider
1 parent d1e02ed commit 3ec3366

File tree

5 files changed

+119
-12
lines changed

5 files changed

+119
-12
lines changed

pallets/funding/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ pub use types::*;
9595
use xcm::v5::prelude::*;
9696

9797
pub mod functions;
98-
pub mod storage_migrations;
98+
pub mod migrations;
9999
pub mod traits;
100100
pub mod types;
101101
pub mod weights;
@@ -166,7 +166,7 @@ pub mod pallet {
166166
}
167167

168168
#[pallet::pallet]
169-
#[pallet::storage_version(storage_migrations::STORAGE_VERSION)]
169+
#[pallet::storage_version(migrations::STORAGE_VERSION)]
170170
pub struct Pallet<T>(_);
171171

172172
#[pallet::config]

pallets/funding/src/migrations/mod.rs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
//! Migrations
2+
3+
use frame_support::traits::StorageVersion;
4+
5+
pub mod storage_migrations;
6+
pub mod vesting_info;
7+
8+
/// Current storage version
9+
pub const STORAGE_VERSION: StorageVersion = StorageVersion::new(7);

pallets/funding/src/storage_migrations.rs pallets/funding/src/migrations/storage_migrations.rs

+5-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::{
44
ProjectMetadataOf, StringLimitOf,
55
};
66
use core::marker::PhantomData;
7-
use frame_support::traits::{StorageVersion, UncheckedOnRuntimeUpgrade};
7+
use frame_support::traits::UncheckedOnRuntimeUpgrade;
88
use polimec_common::{assets::AcceptedFundingAsset, credentials::Cid};
99
use scale_info::TypeInfo;
1010
use serde::{Deserialize, Serialize};
@@ -15,10 +15,6 @@ use alloc::vec::Vec;
1515
use polimec_common::migration_types::{MigrationInfo, ParticipationType};
1616
use xcm::v5::Location;
1717

18-
/// The current storage version
19-
pub const STORAGE_VERSION: StorageVersion = StorageVersion::new(6);
20-
pub const LOG: &str = "runtime::funding::migration";
21-
2218
pub mod v5_storage_items {
2319

2420
#[derive(Clone, Copy, Encode, Decode, Eq, PartialEq, RuntimeDebug, TypeInfo, MaxEncodedLen)]
@@ -200,11 +196,11 @@ pub mod v5_storage_items {
200196
}
201197

202198
pub mod v6 {
203-
use super::*;
204-
use crate::{
205-
storage_migrations::v5_storage_items::{OldMigration, OldProjectStatus, MAX_PARTICIPATIONS_PER_USER},
206-
EvaluationRoundInfo, ProjectDetailsOf, ProjectStatus, TicketSize,
199+
use super::{
200+
v5_storage_items::{OldMigration, OldProjectStatus, MAX_PARTICIPATIONS_PER_USER},
201+
*,
207202
};
203+
use crate::{EvaluationRoundInfo, ProjectDetailsOf, ProjectStatus, TicketSize};
208204
use frame_system::pallet_prelude::BlockNumberFor;
209205
use polimec_common::{
210206
credentials::Did,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
// storage_migrations.rs
2+
3+
use crate::Config;
4+
use alloc::vec::Vec;
5+
use frame_support::{pallet_prelude::*, traits::UncheckedOnRuntimeUpgrade, weights::Weight};
6+
use polimec_common::migration_types::{Migration, MigrationInfo, MigrationStatus};
7+
use sp_runtime::{traits::ConstU32, WeakBoundedVec};
8+
9+
pub mod v7 {
10+
use crate::{AccountIdOf, ProjectId, UserMigrations};
11+
12+
use super::*;
13+
14+
const LOG: &str = "funding::migration::v7";
15+
pub const MAX_PARTICIPATIONS_PER_USER: u32 = 10_000;
16+
17+
type UserMigrationsValue = (MigrationStatus, WeakBoundedVec<Migration, ConstU32<MAX_PARTICIPATIONS_PER_USER>>);
18+
19+
pub struct UncheckedMigrationToV7<T: Config>(PhantomData<T>);
20+
impl<T: Config> UncheckedOnRuntimeUpgrade for UncheckedMigrationToV7<T> {
21+
fn on_runtime_upgrade() -> Weight {
22+
let mut items = 0u64;
23+
log::info!(target: LOG, "Starting vesting time migration to V7");
24+
25+
let translate_migrations =
26+
|_: (ProjectId, AccountIdOf<T>), migration_value: UserMigrationsValue| -> Option<UserMigrationsValue> {
27+
let (status, migrations) = migration_value;
28+
let migrated: Vec<_> = migrations
29+
.iter()
30+
.map(|migration| {
31+
items = items.saturating_add(1);
32+
33+
Migration {
34+
info: MigrationInfo {
35+
vesting_time: migration.info.vesting_time.checked_div(2).unwrap_or(0),
36+
..migration.info
37+
},
38+
..migration.clone()
39+
}
40+
})
41+
.collect();
42+
43+
let bounded = WeakBoundedVec::try_from(migrated)
44+
.unwrap_or_else(|_| panic!("MaxParticipationsPerUser exceeded during migration"));
45+
46+
Some((status, bounded))
47+
};
48+
49+
UserMigrations::<T>::translate(translate_migrations);
50+
51+
log::info!(target: LOG, "Migrated {} vesting entries", items);
52+
T::DbWeight::get().reads_writes(items, items)
53+
}
54+
55+
#[cfg(feature = "try-runtime")]
56+
fn pre_upgrade() -> Result<Vec<u8>, DispatchError> {
57+
let migration_count = UserMigrations::<T>::iter().count() as u32;
58+
log::info!(target: LOG, "Pre-upgrade: {} UserMigrations entries", migration_count);
59+
60+
// Encode counts and sample pre-migration vesting times for validation
61+
let user_migrations = UserMigrations::<T>::iter().collect::<Vec<_>>();
62+
63+
Ok((migration_count, user_migrations).encode())
64+
}
65+
66+
#[cfg(feature = "try-runtime")]
67+
fn post_upgrade(pre_state: Vec<u8>) -> Result<(), DispatchError> {
68+
let (pre_migration_count, pre_user_migrations): (
69+
u32,
70+
Vec<((ProjectId, AccountIdOf<T>), UserMigrationsValue)>,
71+
) = Decode::decode(&mut &pre_state[..]).expect("Failed to decode pre-migration state");
72+
73+
let post_migration_count = UserMigrations::<T>::iter().count() as u32;
74+
75+
if pre_migration_count != post_migration_count {
76+
return Err("Migration count mismatch".into());
77+
}
78+
79+
for (key, pre_value) in pre_user_migrations {
80+
let post_value = UserMigrations::<T>::get(key.clone())
81+
.unwrap_or_else(|| panic!("Post-migration UserMigrations entry not found for {:?}", key));
82+
83+
for (pre_migration, post_migration) in pre_value.1.iter().zip(post_value.1.iter()) {
84+
if pre_migration.info.vesting_time.checked_div(2).unwrap_or(0) != post_migration.info.vesting_time {
85+
return Err("Migration vesting time mismatch".into());
86+
}
87+
}
88+
}
89+
90+
Ok(())
91+
}
92+
}
93+
94+
pub type MigrationToV7<T> = frame_support::migrations::VersionedMigration<
95+
6,
96+
7,
97+
UncheckedMigrationToV7<T>,
98+
crate::Pallet<T>,
99+
<T as frame_system::Config>::DbWeight,
100+
>;
101+
}

runtimes/polimec/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,9 @@ pub mod migrations {
189189
pub type Unreleased = (
190190
super::custom_migrations::asset_id_migration::FromOldAssetIdMigration,
191191
super::custom_migrations::linear_release::LinearReleaseVestingMigration,
192-
pallet_funding::storage_migrations::v6::MigrationToV6<Runtime>,
192+
pallet_funding::migrations::storage_migrations::v6::MigrationToV6<Runtime>,
193193
RemovePallet<IdentityPalletName, RuntimeDbWeight>,
194+
pallet_funding::migrations::vesting_info::v7::MigrationToV7<Runtime>,
194195
);
195196
}
196197

0 commit comments

Comments
 (0)