From 271d3f3e57031ea8dc26245d3700b8414ec31859 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Thu, 5 May 2016 22:37:30 +0400 Subject: [PATCH] ids move --- ethcore/src/client/mod.rs | 3 +-- ethcore/src/{client => types}/ids.rs | 0 ethcore/src/types/mod.rs | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) rename ethcore/src/{client => types}/ids.rs (100%) diff --git a/ethcore/src/client/mod.rs b/ethcore/src/client/mod.rs index 90dd78015..b030630be 100644 --- a/ethcore/src/client/mod.rs +++ b/ethcore/src/client/mod.rs @@ -18,13 +18,12 @@ mod client; mod config; -mod ids; mod test_client; mod trace; pub use self::client::*; pub use self::config::{ClientConfig, BlockQueueConfig, BlockChainConfig, Switch}; -pub use self::ids::{BlockId, TransactionId, UncleId, TraceId}; +pub use types::ids::*; pub use self::test_client::{TestBlockChainClient, EachBlockWith}; pub use self::trace::Filter as TraceFilter; pub use executive::{Executed, Executive, TransactOptions}; diff --git a/ethcore/src/client/ids.rs b/ethcore/src/types/ids.rs similarity index 100% rename from ethcore/src/client/ids.rs rename to ethcore/src/types/ids.rs diff --git a/ethcore/src/types/mod.rs b/ethcore/src/types/mod.rs index 438dbafb0..eb815ffa9 100644 --- a/ethcore/src/types/mod.rs +++ b/ethcore/src/types/mod.rs @@ -17,3 +17,4 @@ //! Types used in the public api pub mod transaction; +pub mod ids;