From 0d8c04375eb7b20c02ff542b7eeed75f50e205f3 Mon Sep 17 00:00:00 2001 From: Christian Langenbacher Date: Sat, 17 Feb 2024 09:40:01 +0900 Subject: [PATCH] fix clippy --- runtime/bajun/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/bajun/src/lib.rs b/runtime/bajun/src/lib.rs index 4ff8893..18693fc 100644 --- a/runtime/bajun/src/lib.rs +++ b/runtime/bajun/src/lib.rs @@ -154,7 +154,7 @@ type Migrations = ( // We have currently 356 identities on Bajun, so setting the max number to be migrated to 1_000 // should be more than enough, while still staying in a limit that will not overweigh our // runtime migration. - pallet_identity::migration::versioned::V0ToV1, + pallet_identity::migration::versioned::V0ToV1, // Track inactive funds of the teleporter account, currently we don't use that, but it doesn't // hurt either. pallet_balances::migration::MigrateToTrackInactive,