Skip to main content

solana_send_transaction_service/
lib.rs

1#![cfg_attr(
2    not(feature = "agave-unstable-api"),
3    deprecated(
4        since = "3.1.0",
5        note = "This crate has been marked for formal inclusion in the Agave Unstable API. From \
6                v4.0.0 onward, the `agave-unstable-api` crate feature must be specified to \
7                acknowledge use of an interface that may break without warning."
8    )
9)]
10#![allow(clippy::arithmetic_side_effects)]
11pub mod send_transaction_service;
12pub mod send_transaction_service_stats;
13#[cfg(any(test, feature = "dev-context-only-utils"))]
14pub mod test_utils;
15pub mod tpu_info;
16pub mod transaction_client;
17
18pub use {
19    send_transaction_service_stats::SendTransactionServiceStats,
20    transaction_client::{CurrentLeaderInfo, LEADER_INFO_REFRESH_RATE_MS},
21};
22
23#[macro_use]
24extern crate solana_metrics;