From a8affa6dee3cc654f57c84805927bcf43f07ace5 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Thu, 5 May 2016 23:57:10 +0400 Subject: [PATCH] log_entry move --- ethcore/src/lib.rs | 1 - ethcore/src/{ => types}/log_entry.rs | 0 ethcore/src/types/mod.rs | 1 + 3 files changed, 1 insertion(+), 1 deletion(-) rename ethcore/src/{ => types}/log_entry.rs (100%) diff --git a/ethcore/src/lib.rs b/ethcore/src/lib.rs index d55628bd9..b18efa54d 100644 --- a/ethcore/src/lib.rs +++ b/ethcore/src/lib.rs @@ -98,7 +98,6 @@ pub mod ethereum; pub mod filter; pub mod header; pub mod service; -pub mod log_entry; pub mod trace; pub mod spec; pub mod views; diff --git a/ethcore/src/log_entry.rs b/ethcore/src/types/log_entry.rs similarity index 100% rename from ethcore/src/log_entry.rs rename to ethcore/src/types/log_entry.rs diff --git a/ethcore/src/types/mod.rs b/ethcore/src/types/mod.rs index b7f9ee3ce..7557fd89b 100644 --- a/ethcore/src/types/mod.rs +++ b/ethcore/src/types/mod.rs @@ -21,3 +21,4 @@ pub mod ids; pub mod receipt; pub mod tree_route; pub mod blockchain_info; +pub mod log_entry;