* Implementation-defined RPC server errors are now accessible to client/ users (cherry picked from commit247228ee61) * Cleanly handle RPC servers that don't have --enable-rpc-transaction-history enabled (cherry picked from commit14d793b22c) Co-authored-by: Michael Vines <mvines@gmail.com>
19 lines
364 B
Rust
19 lines
364 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
pub mod blockhash_query;
|
|
pub mod client_error;
|
|
pub mod http_sender;
|
|
pub mod mock_sender;
|
|
pub mod nonce_utils;
|
|
pub mod perf_utils;
|
|
pub mod pubsub_client;
|
|
pub mod rpc_client;
|
|
pub mod rpc_config;
|
|
pub mod rpc_custom_error;
|
|
pub mod rpc_filter;
|
|
pub mod rpc_request;
|
|
pub mod rpc_response;
|
|
pub mod rpc_sender;
|
|
pub mod thin_client;
|