2018-03-13 11:49:57 +01:00
|
|
|
// Copyright 2015-2018 Parity Technologies (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/>.
|
|
|
|
|
|
|
|
extern crate ansi_term;
|
|
|
|
extern crate ethcore;
|
|
|
|
extern crate ethcore_io as io;
|
2018-04-09 16:14:33 +02:00
|
|
|
extern crate ethcore_private_tx;
|
2018-04-10 12:13:49 +02:00
|
|
|
extern crate ethcore_sync as sync;
|
2018-08-29 14:31:04 +02:00
|
|
|
extern crate ethereum_types;
|
2018-04-10 12:13:49 +02:00
|
|
|
extern crate kvdb;
|
2018-03-13 11:49:57 +01:00
|
|
|
|
2018-04-09 16:14:33 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate error_chain;
|
|
|
|
|
2018-03-13 11:49:57 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
|
2018-05-09 08:49:34 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate trace_time;
|
|
|
|
|
2018-03-13 11:49:57 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
extern crate tempdir;
|
|
|
|
|
2018-04-09 16:14:33 +02:00
|
|
|
mod error;
|
|
|
|
mod service;
|
2018-12-28 10:33:49 +01:00
|
|
|
mod stop_guard;
|
2018-04-09 16:14:33 +02:00
|
|
|
|
2018-04-09 14:21:37 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
extern crate kvdb_rocksdb;
|
|
|
|
|
2018-04-09 16:14:33 +02:00
|
|
|
pub use error::{Error, ErrorKind};
|
|
|
|
pub use service::{ClientService, PrivateTxService};
|