2021-02-16 14:48:20 -07:00
|
|
|
#![allow(clippy::integer_arithmetic)]
|
2019-09-27 22:00:30 -07:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
|
2020-09-22 16:06:14 -06:00
|
|
|
pub mod blockhash_query;
|
2019-04-25 11:29:44 -06:00
|
|
|
pub mod client_error;
|
2022-03-15 18:16:35 -04:00
|
|
|
pub mod connection_cache;
|
2022-01-24 17:01:07 -08:00
|
|
|
pub(crate) mod http_sender;
|
|
|
|
pub(crate) mod mock_sender;
|
|
|
|
pub mod nonblocking;
|
2020-09-21 13:26:06 -06:00
|
|
|
pub mod nonce_utils;
|
2019-05-01 15:58:35 -07:00
|
|
|
pub mod perf_utils;
|
2020-02-06 14:16:30 -05:00
|
|
|
pub mod pubsub_client;
|
2022-03-09 21:33:05 -05:00
|
|
|
pub mod quic_client;
|
2021-02-11 11:32:46 -08:00
|
|
|
pub mod rpc_cache;
|
2019-03-16 22:37:20 -07:00
|
|
|
pub mod rpc_client;
|
2020-05-12 21:05:05 -06:00
|
|
|
pub mod rpc_config;
|
2020-10-12 17:47:06 -07:00
|
|
|
pub mod rpc_custom_error;
|
2021-04-15 17:00:14 -06:00
|
|
|
pub mod rpc_deprecated_config;
|
2020-07-03 01:46:29 -06:00
|
|
|
pub mod rpc_filter;
|
2019-03-12 18:26:07 -06:00
|
|
|
pub mod rpc_request;
|
2020-01-15 00:25:45 -07:00
|
|
|
pub mod rpc_response;
|
2022-03-09 15:07:51 -06:00
|
|
|
pub mod rpc_sender;
|
2021-10-26 22:54:26 +02:00
|
|
|
pub mod spinner;
|
2019-03-12 18:26:07 -06:00
|
|
|
pub mod thin_client;
|
2021-04-23 09:35:12 +08:00
|
|
|
pub mod tpu_client;
|
2022-03-09 21:33:05 -05:00
|
|
|
pub mod tpu_connection;
|
2021-10-13 04:06:23 -07:00
|
|
|
pub mod transaction_executor;
|
2022-03-09 21:33:05 -05:00
|
|
|
pub mod udp_client;
|
2022-01-24 17:01:07 -08:00
|
|
|
|
|
|
|
pub mod mock_sender_for_cli {
|
|
|
|
/// Magic `SIGNATURE` value used by `solana-cli` unit tests.
|
|
|
|
/// Please don't use this constant.
|
|
|
|
pub const SIGNATURE: &str =
|
|
|
|
"43yNSFC6fYTuPgTNFFhF4axw7AfWxB2BPdurme8yrsWEYwm8299xh8n6TAHjGymiSub1XtyxTNyd9GBfY2hxoBw8";
|
|
|
|
}
|