Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Final fixes.
  • Loading branch information
gavofyork committed Feb 16, 2018
commit 5d1a3a7112b51ba46767a24a19da018423043ffe
6 changes: 3 additions & 3 deletions substrate/client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@

//! 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;
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)]
Expand Down
1 change: 0 additions & 1 deletion substrate/client/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

use std;
use state_machine;
use blockchain;
use primitives::hexdisplay::HexDisplay;

error_chain! {
Expand Down
2 changes: 1 addition & 1 deletion substrate/client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;