Final fixes.

This commit is contained in:
Gav
2018-02-16 20:17:26 +01:00
parent 5fe79b6bd3
commit 7440d3c8fe
3 changed files with 4 additions and 5 deletions
+3 -3
View File
@@ -16,7 +16,7 @@
//! Substrate Client
use primitives::{block, AuthorityId};
use primitives::{self, block, AuthorityId};
use primitives::block::Id as BlockId;
use primitives::storage::{StorageKey, StorageData};
use runtime_support::Hashable;
@@ -24,8 +24,8 @@ use codec::{KeyedVec, Slicable};
use state_machine::{self, Ext, OverlayedChanges, Backend as StateBackend, CodeExecutor};
use backend::{self, BlockImportOperation};
use blockchain::{self, Info as ChainInfo, BlockId, Backend as ChainBackend};
use {error, in_mem, block_builder, runtime_io};
use blockchain::{self, Info as ChainInfo, Backend as ChainBackend};
use {error, in_mem, block_builder, runtime_io, bft};
/// Polkadot Client
#[derive(Debug)]
-1
View File
@@ -18,7 +18,6 @@
use std;
use state_machine;
use blockchain;
use primitives::hexdisplay::HexDisplay;
error_chain! {
+1 -1
View File
@@ -44,4 +44,4 @@ pub mod block_builder;
mod client;
pub use client::{Client, ClientInfo, CallResult, ImportResult, BlockStatus, new_in_mem};
pub use blockchain::{Info as ChainInfo, BlockId};
pub use blockchain::Info as ChainInfo;