fix grumbles

This commit is contained in:
Robert Habermeier
2018-01-23 17:43:35 +01:00
parent c27ea0b73b
commit 21a4f9f821
10 changed files with 30 additions and 13 deletions
@@ -16,7 +16,7 @@
//! Conensus module for runtime; manages the authority set ready for the native code.
use runtime_support::vec::Vec;
use runtime_support::prelude::*;
use storable::StorageVec;
use primitives::SessionKey;
@@ -17,7 +17,7 @@
//! Session manager: is told the validators and allows them to manage their session keys for the
//! consensus module.
use runtime_support::vec::Vec;
use runtime_support::prelude::*;
use keyedvec::KeyedVec;
use storable::{kill, Storable, StorageVec};
use primitives::{AccountID, SessionKey, BlockNumber};
@@ -16,7 +16,7 @@
//! Staking manager: Handles balances and periodically determines the best set of validators.
use runtime_support::vec::Vec;
use runtime_support::prelude::*;
use keyedvec::KeyedVec;
use storable::{Storable, StorageVec};
use primitives::{BlockNumber, AccountID};
@@ -19,7 +19,7 @@
use primitives::{Block, BlockNumber, Hash, UncheckedTransaction, TxOrder, Hashable};
use runtime_support::mem;
use runtime_support::vec::Vec;
use runtime_support::prelude::*;
use storable::Storable;
use keyedvec::KeyedVec;
use environment::with_env;