cuprated/
txpool.rs

1//! Transaction Pool
2//!
3//! Handles initiating the tx-pool, providing the preprocessor required for the dandelion pool.
4use cuprate_consensus::BlockchainContextService;
5use cuprate_p2p::NetworkInterface;
6use cuprate_p2p_core::ClearNet;
7use cuprate_txpool::service::{TxpoolReadHandle, TxpoolWriteHandle};
8
9mod dandelion;
10mod incoming_tx;
11mod txs_being_handled;
12
13pub use incoming_tx::{IncomingTxError, IncomingTxHandler, IncomingTxs};