@@ -236,70 +236,6 @@ impl<T: Config> Pallet<T> {
236
236
Ok ( ( liquidity_pools_reward_pot, long_term_holder_reward_pot) )
237
237
}
238
238
239
- pub fn migrations_per_xcm_message_allowed ( ) -> u32 {
240
- const MAX_WEIGHT : Weight = Weight :: from_parts ( 20_000_000_000 , 1_000_000 ) ;
241
-
242
- let one_migration_bytes = ( 0u128 , 0u64 ) . encode ( ) . len ( ) as u32 ;
243
-
244
- // our encoded call starts with pallet index 51, and call index 0
245
- let mut encoded_call = vec ! [ 51u8 , 0 ] ;
246
- let encoded_first_param = [ 0u8 ; 32 ] . encode ( ) ;
247
- let encoded_second_param = Vec :: < MigrationInfo > :: new ( ) . encode ( ) ;
248
- // we append the encoded parameters, with our migrations vec being empty for now
249
- encoded_call. extend_from_slice ( encoded_first_param. as_slice ( ) ) ;
250
- encoded_call. extend_from_slice ( encoded_second_param. as_slice ( ) ) ;
251
-
252
- let base_xcm_message: Xcm < ( ) > = Xcm ( vec ! [
253
- UnpaidExecution { weight_limit: WeightLimit :: Unlimited , check_origin: None } ,
254
- Transact { origin_kind: OriginKind :: Native , require_weight_at_most: MAX_WEIGHT , call: encoded_call. into( ) } ,
255
- ReportTransactStatus ( QueryResponseInfo {
256
- destination: Parachain ( 3344 ) . into( ) ,
257
- query_id: 0 ,
258
- max_weight: MAX_WEIGHT ,
259
- } ) ,
260
- ] ) ;
261
- let xcm_size = base_xcm_message. encode ( ) . len ( ) ;
262
-
263
- let available_bytes_for_migration_per_message =
264
- T :: RequiredMaxMessageSize :: get ( ) . saturating_sub ( xcm_size as u32 ) ;
265
-
266
- available_bytes_for_migration_per_message. saturating_div ( one_migration_bytes)
267
- }
268
-
269
- // /// Check if the user has no participations (left) in the project.
270
- // pub fn user_has_no_participations(project_id: ProjectId, user: AccountIdOf<T>) -> bool {
271
- // Evaluations::<T>::iter_prefix_values((project_id, user.clone())).next().is_none() &&
272
- // Bids::<T>::iter_prefix_values((project_id, user.clone())).next().is_none()
273
- // }
274
-
275
- pub fn construct_migration_xcm_message (
276
- migrations : WeakBoundedVec < Migration , ConstU32 < 10_000 > > ,
277
- query_id : QueryId ,
278
- pallet_index : PalletIndex ,
279
- ) -> Xcm < ( ) > {
280
- // TODO: adjust this as benchmarks for polimec-receiver are written
281
- const MAX_WEIGHT : Weight = Weight :: from_parts ( 10_000 , 0 ) ;
282
- const MAX_RESPONSE_WEIGHT : Weight = Weight :: from_parts ( 700_000_000 , 50_000 ) ;
283
- let migrations_item = Migrations :: from ( migrations. to_vec ( ) ) ;
284
-
285
- // First byte is the pallet index, second byte is the call index
286
- let mut encoded_call = vec ! [ pallet_index, 0 ] ;
287
-
288
- // migrations_item can contain a Maximum of MaxParticipationsPerUser migrations which
289
- // is 48. So we know that there is an upper limit to this encoded call, namely 48 *
290
- // Migration encode size.
291
- encoded_call. extend_from_slice ( migrations_item. encode ( ) . as_slice ( ) ) ;
292
- Xcm ( vec ! [
293
- UnpaidExecution { weight_limit: WeightLimit :: Unlimited , check_origin: None } ,
294
- Transact { origin_kind: OriginKind :: Native , require_weight_at_most: MAX_WEIGHT , call: encoded_call. into( ) } ,
295
- ReportTransactStatus ( QueryResponseInfo {
296
- destination: ParentThen ( Parachain ( POLIMEC_PARA_ID ) . into( ) ) . into( ) ,
297
- query_id,
298
- max_weight: MAX_RESPONSE_WEIGHT ,
299
- } ) ,
300
- ] )
301
- }
302
-
303
239
pub fn change_migration_status (
304
240
project_id : ProjectId ,
305
241
user : T :: AccountId ,
@@ -309,22 +245,9 @@ impl<T: Config> Pallet<T> {
309
245
let ( current_status, migrations) =
310
246
UserMigrations :: < T > :: get ( ( project_id, user. clone ( ) ) ) . ok_or ( Error :: < T > :: NoMigrationsFound ) ?;
311
247
312
- let status = match status {
313
- MigrationStatus :: Sent ( _)
314
- if matches ! ( current_status, MigrationStatus :: NotStarted | MigrationStatus :: Failed ) =>
315
- status,
316
- MigrationStatus :: Confirmed
317
- if matches ! ( project_details. migration_type, Some ( MigrationType :: Offchain ) ) ||
318
- ( matches ! ( project_details. migration_type, Some ( MigrationType :: Pallet ( _) ) ) &&
319
- matches ! ( current_status, MigrationStatus :: Sent ( _) ) ) =>
320
- {
321
- UnmigratedCounter :: < T > :: mutate ( project_id, |counter| * counter = counter. saturating_sub ( 1 ) ) ;
322
- status
323
- } ,
324
- MigrationStatus :: Failed if matches ! ( current_status, MigrationStatus :: Sent ( _) ) => status,
248
+ ensure ! ( current_status == MigrationStatus :: NotStarted , Error :: <T >:: MigrationAlreadyConfirmed ) ;
325
249
326
- _ => return Err ( Error :: < T > :: NotAllowed . into ( ) ) ,
327
- } ;
250
+ UnmigratedCounter :: < T > :: mutate ( project_id, |counter| * counter = counter. saturating_sub ( 1 ) ) ;
328
251
UserMigrations :: < T > :: insert ( ( project_id, user) , ( status, migrations) ) ;
329
252
ProjectsDetails :: < T > :: insert ( project_id, project_details) ;
330
253
0 commit comments