Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Roznovjak committed Dec 12, 2023
1 parent 1facf34 commit b93ac0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions runtime/basilisk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,9 @@ pub type Executive = frame_executive::Executive<
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsReversedWithSystemFirst,
(migrations::OnRuntimeUpgradeMigration,
pallet_transaction_pause::migration::v1::Migration<Runtime>,
(
migrations::OnRuntimeUpgradeMigration,
pallet_transaction_pause::migration::v1::Migration<Runtime>,
),
>;

Expand Down
3 changes: 1 addition & 2 deletions runtime/basilisk/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ impl OnRuntimeUpgrade for OnRuntimeUpgradeMigration {
log::info!("Migrate Collator Selection Pallet to v1 end");

Check warning on line 27 in runtime/basilisk/src/migrations.rs

View check run for this annotation

Codecov / codecov/patch

runtime/basilisk/src/migrations.rs#L24-L27

Added lines #L24 - L27 were not covered by tests

log::info!("Migrate Collator Rewards Pallet to v1 start");
weight = weight
.saturating_add(pallet_collator_rewards::migration::v1::migrate::<Runtime>());
weight = weight.saturating_add(pallet_collator_rewards::migration::v1::migrate::<Runtime>());
log::info!("Migrate Collator Rewards Pallet to v1 end");

Check warning on line 31 in runtime/basilisk/src/migrations.rs

View check run for this annotation

Codecov / codecov/patch

runtime/basilisk/src/migrations.rs#L29-L31

Added lines #L29 - L31 were not covered by tests

log::info!("Migrate Unknown Tokens Pallet to v2 start");
Expand Down

0 comments on commit b93ac0c

Please sign in to comment.