1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
use crate::*;
use core::marker::PhantomData;
use frame_support::traits::OnRuntimeUpgrade;
pub mod v2 {
use frame_support::traits::StorageVersion;
use super::*;
pub struct Migrate<T, G>(PhantomData<(T, G)>);
impl<T, G> OnRuntimeUpgrade for Migrate<T, G>
where
T: Config,
G: Get<Vec<(T::AccountId, T::BlockNumber)>>,
{
fn on_runtime_upgrade() -> frame_support::weights::Weight {
if StorageVersion::get::<Pallet<T>>() != StorageVersion::new(1) {
frame_support::log::error!(
"Expected storage version 1, found {:?}, skipping migration",
StorageVersion::get::<Pallet<T>>()
);
}
let pools = G::get();
for (pool_account, block) in pools {
Pools::<T>::mutate(block % T::REFRESH_FREQUENCY, |pools| {
if !pools.contains(&pool_account) {
frame_support::log::info!(
"Add pool {pool_account:?} at block {block:?} to farming"
);
pools.push(pool_account);
} else {
frame_support::log::info!(
"Skip {pool_account:?} at block {block:?}, already exist"
);
}
});
}
StorageVersion::new(2).put::<Pallet<T>>();
<T as frame_system::Config>::BlockWeights::get().max_block
}
#[cfg(feature = "try-runtime")]
fn pre_upgrade() -> Result<Vec<u8>, &'static str> {
frame_support::ensure!(
StorageVersion::get::<Pallet<T>>() == StorageVersion::new(1),
"Wrong storage version before upgrade"
);
Ok(Vec::new())
}
#[cfg(feature = "try-runtime")]
fn post_upgrade(_state: Vec<u8>) -> Result<(), &'static str> {
frame_support::ensure!(
StorageVersion::get::<Pallet<T>>() == StorageVersion::new(2),
"Wrong storage version after upgrade"
);
Ok(())
}
}
}
pub mod v3 {
use frame_support::log::info;
use frame_support::traits::StorageVersion;
use super::*;
pub struct Migrate<T, P, B>(PhantomData<(T, P, B)>);
impl<T, P, B> OnRuntimeUpgrade for Migrate<T, P, B>
where
T: Config,
P: Get<Vec<(T::AccountId, T::AccountId)>>,
B: Get<Vec<T::BlockNumber>>,
{
fn on_runtime_upgrade() -> frame_support::weights::Weight {
if StorageVersion::get::<Pallet<T>>() != StorageVersion::new(2) {
frame_support::log::error!(
"Expected storage version 2, found {:?}, skipping migration",
StorageVersion::get::<Pallet<T>>()
);
return Weight::zero();
}
info!("Migrating Farming to v3");
let pools = P::get();
let blocks = B::get();
let pools_weight = blocks
.iter()
.fold(Weight::zero(), |weight_acc, block_number| {
Pools::<T>::mutate_exists(block_number, |pool_accounts| {
if let Some(pool_accounts_vec) = pool_accounts {
pools.iter().for_each(|(pool_account, _)| {
pool_accounts_vec.retain(|account| account == pool_account)
});
if pool_accounts_vec.is_empty() {
*pool_accounts = None
};
}
});
weight_acc.saturating_add(T::DbWeight::get().reads_writes(1, 1))
});
let pool_farmers_weight =
pools
.iter()
.fold(Weight::zero(), |weight_acc, (pool_account, _)| {
PoolFarmers::<T>::remove(pool_account);
weight_acc.saturating_add(T::DbWeight::get().reads_writes(0, 1))
});
StorageVersion::new(2).put::<Pallet<T>>();
pools_weight
.saturating_add(pool_farmers_weight)
.saturating_add(T::DbWeight::get().reads_writes(0, 1))
}
#[cfg(feature = "try-runtime")]
fn pre_upgrade() -> Result<Vec<u8>, &'static str> {
frame_support::ensure!(
StorageVersion::get::<Pallet<T>>() == StorageVersion::new(2),
"Wrong storage version before upgrade"
);
Ok(Vec::new())
}
#[cfg(feature = "try-runtime")]
fn post_upgrade(_state: Vec<u8>) -> Result<(), &'static str> {
frame_support::ensure!(
StorageVersion::get::<Pallet<T>>() == StorageVersion::new(3),
"Wrong storage version after upgrade"
);
let pools = &P::get();
let blocks = B::get();
for block_number in blocks {
let pool_accounts_in_storage = Pools::<T>::get(block_number);
for (pool_account, _) in pools {
frame_support::ensure!(
!pool_accounts_in_storage.contains(pool_account),
"Synthetic pools still referenced in Pools storage in Farming pallet"
);
}
}
for (pool_account, _) in pools {
frame_support::ensure!(
!PoolFarmers::<T>::contains_key(pool_account),
"Synthetic pools still referenced in PoolFarmers storage in Farming pallet"
);
}
Ok(())
}
}
}