Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
wischli committed Apr 19, 2024
1 parent bfbb58d commit 967b841
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion runtime/development/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ mod cleanup_foreign_investments {
traits::{Get, OnRuntimeUpgrade},
weights::Weight,
};
use runtime_common::migrations::utils::{count_storage_keys, remove_undecodable_storage_keys};
#[cfg(feature = "try-runtime")]
use runtime_common::migrations::utils::count_storage_keys;
use runtime_common::migrations::utils::remove_undecodable_storage_keys;
#[cfg(feature = "try-runtime")]
use sp_runtime::DispatchError;
#[cfg(feature = "try-runtime")]
use sp_runtime::SaturatedConversion;

pub struct Migration<T>(sp_std::marker::PhantomData<T>);
Expand Down

0 comments on commit 967b841

Please sign in to comment.