Skip to content

Commit b73b726

Browse files
committed
Vesting pallet block number provider migration
1 parent ff5663f commit b73b726

File tree

3 files changed

+124
-0
lines changed

3 files changed

+124
-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,122 @@
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 + cumulus_pallet_parachain_system::Config>(
28+
PhantomData<T>,
29+
);
30+
31+
impl<T: pallet_vesting::Config + cumulus_pallet_parachain_system::Config> OnRuntimeUpgrade
32+
for UncheckedMigrationToV1<T>
33+
{
34+
#[cfg(feature = "try-runtime")]
35+
fn pre_upgrade() -> Result<Vec<u8>, DispatchError> {
36+
let migration_count = pallet_vesting::Vesting::<T>::iter().count() as u32;
37+
log::info!(target: LOG, "Pre-upgrade: {} UserMigrations entries", migration_count);
38+
39+
let vestings = pallet_vesting::Vesting::<T>::iter().collect::<Vec<_>>();
40+
41+
Ok((migration_count, vestings).encode())
42+
}
43+
44+
fn on_runtime_upgrade() -> Weight {
45+
let mut items = 0u64;
46+
let translate_vesting_info = |_: AccountIdOf<T>, vesting_info: Values<T>| -> Option<Values<T>> {
47+
let migrated: Vec<_> = vesting_info
48+
.iter()
49+
.map(|vesting| {
50+
items = items.saturating_add(1);
51+
52+
// adjust starting block to relay chain block number
53+
let relay_chain_now = T::BlockNumberProvider::current_block_number();
54+
55+
let polimec_now = frame_system::Pallet::<T>::current_block_number();
56+
let blocks_passed = polimec_now.saturating_sub(vesting.starting_block());
57+
let relay_chain_starting_block = relay_chain_now.saturating_sub(
58+
blocks_passed.saturating_mul(2_u32.try_into().ok().expect("safe to convert; qed")),
59+
);
60+
61+
let adjusted_per_block =
62+
vesting.per_block().saturating_mul(2_u32.try_into().ok().expect("safe to convert; qed"));
63+
64+
VestingInfo::new(vesting.locked(), adjusted_per_block, relay_chain_starting_block)
65+
})
66+
.collect();
67+
68+
Values::<T>::try_from(migrated).ok()
69+
};
70+
71+
log::info!(target: LOG, "Starting vesting time migration to V1");
72+
73+
pallet_vesting::Vesting::<T>::translate(translate_vesting_info);
74+
75+
log::info!(target: LOG, "Migrated {} vesting entries", items);
76+
77+
T::DbWeight::get().reads_writes(items, items)
78+
}
79+
80+
#[cfg(feature = "try-runtime")]
81+
fn post_upgrade(pre_state: Vec<u8>) -> Result<(), DispatchError> {
82+
let (pre_migration_count, pre_vestings): (u32, Vec<(AccountIdOf<T>, Values<T>)>) =
83+
Decode::decode(&mut &pre_state[..]).expect("Failed to decode pre-migration state");
84+
85+
let post_migration_count = pallet_vesting::Vesting::<T>::iter().count() as u32;
86+
87+
if pre_migration_count != post_migration_count {
88+
return Err("Migration count mismatch".into());
89+
}
90+
91+
for (account, pre_vesting) in pre_vestings {
92+
let post_vesting = pallet_vesting::Vesting::<T>::get(&account).unwrap_or_default();
93+
94+
// check that the starting block has been adjusted
95+
let relay_chain_now = T::BlockNumberProvider::current_block_number();
96+
97+
for (pre_vesting_info, post_vesting_info) in pre_vesting.iter().zip(post_vesting.iter()) {
98+
assert_ne!(
99+
pre_vesting_info.starting_block(),
100+
post_vesting_info.starting_block(),
101+
"Starting block not adjusted"
102+
);
103+
assert!(
104+
post_vesting_info.starting_block() <=
105+
relay_chain_now.try_into().ok().expect("safe to convert; qed"),
106+
"Starting block not adjusted correctly"
107+
);
108+
109+
assert!(
110+
post_vesting_info.per_block() ==
111+
pre_vesting_info
112+
.per_block()
113+
.saturating_mul(2_u32.try_into().ok().expect("safe to convert; qed")),
114+
"Per block not adjusted"
115+
);
116+
}
117+
}
118+
119+
Ok(())
120+
}
121+
}
122+
}

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)