Remove unused imports (#3737)

This commit is contained in:
Alexandre R. Baldé
2019-10-01 23:10:37 +01:00
committed by thiolliere
parent 53e0ddee4e
commit 3907582457
6 changed files with 5 additions and 11 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ use consensus_common::import_queue::{
use network::test::*;
use network::test::{Block as TestBlock, PeersClient};
use network::config::BoxFinalityProofRequestBuilder;
use sr_primitives::{generic::DigestItem, traits::{Block as BlockT, DigestFor, NumberFor}};
use sr_primitives::{generic::DigestItem, traits::{Block as BlockT, DigestFor}};
use network::config::ProtocolConfig;
use tokio::runtime::current_thread;
use client::BlockchainEvents;
@@ -138,7 +138,6 @@ mod tests {
use primitives::testing::KeyStore;
use primitives::{crypto::key_types, sr25519, traits::BareCryptoStore, H256};
use runtime_io::{with_externalities, TestExternalities};
use sr_primitives::generic::UncheckedExtrinsic;
use sr_primitives::testing::{Header, UintAuthorityId};
use sr_primitives::traits::{ConvertInto, IdentityLookup, OpaqueKeys};
use sr_primitives::Perbill;
+1 -1
View File
@@ -166,7 +166,7 @@ use support::{
Currency, ExistenceRequirement, Imbalance, LockIdentifier, LockableCurrency, ReservableCurrency,
SignedImbalance, UpdateBalanceOutcome, WithdrawReason, WithdrawReasons,
},
Parameter, StorageDoubleMap, StorageMap, StorageValue,
Parameter, StorageMap,
};
use system::{ensure_signed, ensure_root};
+1 -1
View File
@@ -91,7 +91,7 @@ mod tests;
use codec::FullCodec;
use rstd::prelude::*;
use support::{
StorageValue, StorageMap, decl_module, decl_storage, decl_event, ensure,
StorageValue, decl_module, decl_storage, decl_event, ensure,
traits::{ChangeMembers, InitializeMembers, Currency, Get, ReservableCurrency},
};
use system::{self, ensure_root, ensure_signed};
-5
View File
@@ -394,11 +394,6 @@ pub fn check_nominator_exposure(stash: u64) {
);
}
pub fn assert_total_expo(stash: u64, val: u64) {
let expo = Staking::stakers(&stash);
assert_eq!(expo.total, val, "total exposure mismatch {:?} != {:?}", expo.total, val);
}
pub fn assert_is_stash(acc: u64) {
assert!(Staking::bonded(&acc).is_some(), "Not a stash.");
}
@@ -19,7 +19,7 @@
//! This crate exports a macro `storage_items!` and traits describing behavior of generated
//! structs.
//!
//! Three kinds of data types are currently supported:
//! Two kinds of data types are currently supported:
//! - values
//! - maps
//!
@@ -758,7 +758,7 @@ mod test3 {
#[cfg(test)]
#[allow(dead_code)]
mod test_append_and_len {
use crate::storage::{StorageMap, StorageValue};
use crate::storage::{StorageValue};
use runtime_io::{with_externalities, TestExternalities};
use codec::{Encode, Decode};