Skip to content

Commit c59a61e

Browse files
committed
Remove conduit, use streams and concurrency
1 parent 6219b8d commit c59a61e

File tree

5 files changed

+181
-269
lines changed

5 files changed

+181
-269
lines changed

solana-transaction-utils/src/error.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
use solana_sdk::{message::CompileError, transaction::TransactionError};
22

3-
use crate::tpu_conduit;
4-
53
#[derive(Debug, thiserror::Error, Clone)]
64
pub enum Error {
75
#[error("RPC error: {0}")]
@@ -16,8 +14,6 @@ pub enum Error {
1614
SignerError(String),
1715
#[error("Ix group too large")]
1816
IxGroupTooLarge,
19-
#[error(transparent)]
20-
TransportError(#[from] tpu_conduit::Error),
2117
#[error("Max retries exceeded")]
2218
MaxRetriesExceeded,
2319
#[error("Transaction error: {0}")]

solana-transaction-utils/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@ pub mod queue;
66
pub mod send_and_confirm_transactions_in_parallel;
77
pub mod sender;
88
pub mod sync;
9-
pub mod tpu_conduit;
109

1110
pub use error::Error;

0 commit comments

Comments
 (0)