2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-03-11 10:17:20 +01:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-03-11 10:17:20 +01:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-03-11 10:17:20 +01:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-11 10:17:20 +01:00
|
|
|
|
2016-03-18 22:57:26 +01:00
|
|
|
//! Test rpc services.
|
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
mod miner_service;
|
2016-10-31 17:32:53 +01:00
|
|
|
mod snapshot_service;
|
2017-05-24 12:24:07 +02:00
|
|
|
mod sync_provider;
|
2016-03-11 10:17:20 +01:00
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
pub use self::{
|
|
|
|
miner_service::TestMinerService,
|
2016-12-12 03:49:50 +01:00
|
|
|
snapshot_service::TestSnapshotService,
|
2017-05-24 12:24:07 +02:00
|
|
|
sync_provider::{Config, TestSyncProvider},
|
|
|
|
};
|