2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-05-26 16:59:59 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-05-26 16:59:59 +02: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-05-26 16:59:59 +02: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-05-26 16:59:59 +02:00
|
|
|
|
2016-05-27 18:40:48 +02:00
|
|
|
//! RPC mocked tests. Most of these test that the RPC server is serializing and forwarding
|
|
|
|
//! method calls properly.
|
2016-05-26 16:59:59 +02:00
|
|
|
|
2018-09-08 04:04:28 +02:00
|
|
|
mod debug;
|
2016-05-26 16:59:59 +02:00
|
|
|
mod eth;
|
2017-05-23 12:26:39 +02:00
|
|
|
mod eth_pubsub;
|
2016-12-14 20:07:33 +01:00
|
|
|
mod manage_network;
|
2016-05-26 16:59:59 +02:00
|
|
|
mod net;
|
2016-11-06 12:51:53 +01:00
|
|
|
mod parity;
|
2019-02-07 14:34:24 +01:00
|
|
|
#[cfg(any(test, feature = "accounts"))]
|
2016-11-06 12:51:53 +01:00
|
|
|
mod parity_accounts;
|
|
|
|
mod parity_set;
|
2019-02-07 14:34:24 +01:00
|
|
|
#[cfg(any(test, feature = "accounts"))]
|
2016-12-14 20:07:33 +01:00
|
|
|
mod personal;
|
2017-05-06 13:24:18 +02:00
|
|
|
mod pubsub;
|
2019-02-07 14:34:24 +01:00
|
|
|
#[cfg(any(test, feature = "accounts"))]
|
2017-05-05 15:57:29 +02:00
|
|
|
mod secretstore;
|
2016-11-06 12:51:53 +01:00
|
|
|
mod signer;
|
2019-02-07 14:34:24 +01:00
|
|
|
#[cfg(any(test, feature = "accounts"))]
|
2016-11-06 12:51:53 +01:00
|
|
|
mod signing;
|
2019-02-07 14:34:24 +01:00
|
|
|
#[cfg(any(test, feature = "accounts"))]
|
|
|
|
mod signing_unsafe;
|
2016-12-14 20:07:33 +01:00
|
|
|
mod traces;
|
|
|
|
mod web3;
|