trace filter moved

This commit is contained in:
Nikolay Volf 2016-05-06 00:17:03 +04:00
parent a8affa6dee
commit 2a721b4eda
4 changed files with 24 additions and 5 deletions

View File

@ -21,8 +21,7 @@ mod bloom;
mod config;
mod db;
mod executive_tracer;
mod filter;
mod flat;
pub mod flat;
mod import;
mod localized;
mod noop_tracer;
@ -34,7 +33,7 @@ pub use self::db::TraceDB;
pub use self::trace::Trace;
pub use self::noop_tracer::NoopTracer;
pub use self::executive_tracer::ExecutiveTracer;
pub use self::filter::{Filter, AddressesFilter};
pub use types::trace_types::filter::{Filter, AddressesFilter};
pub use self::import::ImportRequest;
pub use self::localized::LocalizedTrace;
use util::{Bytes, Address, U256, H256};

View File

@ -22,3 +22,4 @@ pub mod receipt;
pub mod tree_route;
pub mod blockchain_info;
pub mod log_entry;
pub mod trace_types;

View File

@ -19,8 +19,8 @@ use bloomchain::{Filter as BloomFilter, Bloom, Number};
use util::{Address, FixedHash};
use util::sha3::Hashable;
use basic_types::LogBloom;
use super::flat::FlatTrace;
use super::trace::Action;
use trace::flat::FlatTrace;
use trace::trace::Action;
/// Addresses filter.
///

View File

@ -0,0 +1,19 @@
// Copyright 2015, 2016 Ethcore (UK) Ltd.
// This file is part of Parity.
// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
//! Types used in the public api
pub mod filter;