Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions pallets/file-bank/src/migration.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use super::*;
use frame_support::{
storage_alias,
storage_alias, weights::WeightMeter,
migrations::{MigrationId, SteppedMigration, SteppedMigrationError},
};

Expand All @@ -9,9 +9,7 @@ use sp_runtime::Vec;
#[cfg(feature = "try-runtime")]
use sp_std::collections::btree_map::BTreeMap;
#[cfg(feature = "try-runtime")]
use sp_runtime::{TryRuntimeError};
#[cfg(feature = "try-runtime")]
use frame_support::weights::WeightMeter;
use sp_runtime::TryRuntimeError;

pub const PALLET_MIGRATIONS_ID: &[u8; 26] = b"pallet-file-bank-migration";

Expand Down
Loading