Remove unused imports and extern crate (#5245)

This commit is contained in:
Kian Paimani
2020-03-14 12:48:47 +01:00
committed by GitHub
parent 74f8db5def
commit 7e2cd0edee
11 changed files with 19 additions and 21 deletions
+1 -2
View File
@@ -1557,12 +1557,11 @@ mod tests {
};
use sp_core::H256;
use sp_runtime::{
traits::{BlakeTwo256, IdentityLookup, Bounded, BadOrigin, OnRuntimeUpgrade},
traits::{BlakeTwo256, IdentityLookup, Bounded, BadOrigin},
testing::Header, Perbill,
};
use pallet_balances::{BalanceLock, Error as BalancesError};
use frame_system::EnsureSignedBy;
use sp_storage::Storage;
const AYE: Vote = Vote{ aye: true, conviction: Conviction::None };
const NAY: Vote = Vote{ aye: false, conviction: Conviction::None };