cuprated/
txpool.rs

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

use crate::blockchain::ConcreteTxVerifierService;

mod dandelion;
mod incoming_tx;
mod txs_being_handled;

pub use incoming_tx::IncomingTxHandler;