Skip to content

Commit e78457e

Browse files
committedMar 25, 2025
Vesting pallet block number provider migration
1 parent ff5663f commit e78457e

File tree

3 files changed

+120
-0
lines changed

3 files changed

+120
-0
lines changed
 

‎runtimes/polimec/src/custom_migrations/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@
1919

2020
pub mod asset_id_migration;
2121
pub mod linear_release;
22+
pub mod vesting;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
use alloc::vec::Vec;
2+
use frame_support::{traits::Currency, BoundedVec};
3+
use frame_system::pallet_prelude::BlockNumberFor;
4+
use pallet_vesting::{MaxVestingSchedulesGet, VestingInfo};
5+
6+
#[cfg(feature = "try-runtime")]
7+
use parity_scale_codec::{Decode, Encode};
8+
#[cfg(feature = "try-runtime")]
9+
use sp_runtime::DispatchError;
10+
11+
type VestingInfoOf<T> = VestingInfo<
12+
<<T as pallet_vesting::Config>::Currency as Currency<<T as frame_system::Config>::AccountId>>::Balance,
13+
BlockNumberFor<T>,
14+
>;
15+
pub type Values<T> = BoundedVec<VestingInfoOf<T>, MaxVestingSchedulesGet<T>>;
16+
17+
pub mod v1 {
18+
use super::*;
19+
use core::marker::PhantomData;
20+
use frame_support::traits::OnRuntimeUpgrade;
21+
use parachains_common::impls::AccountIdOf;
22+
use sp_core::Get;
23+
use sp_runtime::{traits::BlockNumberProvider, Saturating, Weight};
24+
25+
const LOG: &str = "linear_release::migration::v1";
26+
27+
pub struct UncheckedMigrationToV1<T: pallet_vesting::Config>(PhantomData<T>);
28+
29+
impl<T: pallet_vesting::Config> OnRuntimeUpgrade for UncheckedMigrationToV1<T> {
30+
#[cfg(feature = "try-runtime")]
31+
fn pre_upgrade() -> Result<Vec<u8>, DispatchError> {
32+
let migration_count = pallet_vesting::Vesting::<T>::iter().count() as u32;
33+
log::info!(target: LOG, "Pre-upgrade: {} UserMigrations entries", migration_count);
34+
35+
let vestings = pallet_vesting::Vesting::<T>::iter().collect::<Vec<_>>();
36+
37+
Ok((migration_count, vestings).encode())
38+
}
39+
40+
fn on_runtime_upgrade() -> Weight {
41+
let mut items = 0u64;
42+
let translate_vesting_info = |_: AccountIdOf<T>, vesting_info: Values<T>| -> Option<Values<T>> {
43+
let migrated: Vec<_> = vesting_info
44+
.iter()
45+
.map(|vesting| {
46+
items = items.saturating_add(1);
47+
48+
// adjust starting block to relay chain block number
49+
let relay_chain_now = T::BlockNumberProvider::current_block_number();
50+
51+
let polimec_now = frame_system::Pallet::<T>::current_block_number();
52+
let blocks_passed = polimec_now.saturating_sub(vesting.starting_block());
53+
let relay_chain_starting_block = relay_chain_now.saturating_sub(
54+
blocks_passed.saturating_mul(2_u32.try_into().ok().expect("safe to convert; qed")),
55+
);
56+
57+
let adjusted_per_block =
58+
vesting.per_block().saturating_mul(2_u32.try_into().ok().expect("safe to convert; qed"));
59+
60+
VestingInfo::new(vesting.locked(), adjusted_per_block, relay_chain_starting_block)
61+
})
62+
.collect();
63+
64+
Values::<T>::try_from(migrated).ok()
65+
};
66+
67+
log::info!(target: LOG, "Starting vesting time migration to V1");
68+
69+
pallet_vesting::Vesting::<T>::translate(translate_vesting_info);
70+
71+
log::info!(target: LOG, "Migrated {} vesting entries", items);
72+
73+
T::DbWeight::get().reads_writes(items, items)
74+
}
75+
76+
#[cfg(feature = "try-runtime")]
77+
fn post_upgrade(pre_state: Vec<u8>) -> Result<(), DispatchError> {
78+
let (pre_migration_count, pre_vestings): (u32, Vec<(AccountIdOf<T>, Values<T>)>) =
79+
Decode::decode(&mut &pre_state[..]).expect("Failed to decode pre-migration state");
80+
81+
let post_migration_count = pallet_vesting::Vesting::<T>::iter().count() as u32;
82+
83+
if pre_migration_count != post_migration_count {
84+
return Err("Migration count mismatch".into());
85+
}
86+
87+
for (account, pre_vesting) in pre_vestings {
88+
let post_vesting = pallet_vesting::Vesting::<T>::get(&account).unwrap_or_default();
89+
90+
// check that the starting block has been adjusted
91+
let relay_chain_now = T::BlockNumberProvider::current_block_number();
92+
93+
for (pre_vesting_info, post_vesting_info) in pre_vesting.iter().zip(post_vesting.iter()) {
94+
assert_ne!(
95+
pre_vesting_info.starting_block(),
96+
post_vesting_info.starting_block(),
97+
"Starting block not adjusted"
98+
);
99+
assert!(
100+
post_vesting_info.starting_block() <=
101+
relay_chain_now.try_into().ok().expect("safe to convert; qed"),
102+
"Starting block not adjusted correctly"
103+
);
104+
105+
assert!(
106+
post_vesting_info.per_block() ==
107+
pre_vesting_info
108+
.per_block()
109+
.saturating_mul(2_u32.try_into().ok().expect("safe to convert; qed")),
110+
"Per block not adjusted"
111+
);
112+
}
113+
}
114+
115+
Ok(())
116+
}
117+
}
118+
}

‎runtimes/polimec/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ pub mod migrations {
193193
RemovePallet<IdentityPalletName, RuntimeDbWeight>,
194194
pallet_funding::migrations::vesting_info::v7::MigrationToV8<Runtime>,
195195
super::custom_migrations::linear_release::v1::LinearReleaseVestingMigrationV1<Runtime>,
196+
super::custom_migrations::vesting::v1::UncheckedMigrationToV1<Runtime>,
196197
);
197198
}
198199

0 commit comments

Comments
 (0)
Failed to load comments.