Skip to main content

cuprate_txpool/
lib.rs

1#![doc = include_str!("../README.md")]
2#![allow(
3    // See `cuprate-database` for reasoning.
4    clippy::significant_drop_tightening
5)]
6
7// Used in docs: <https://github.com/Cuprate/cuprate/pull/170#discussion_r1823644357>.
8use tower as _;
9
10mod error;
11mod free;
12pub mod ops;
13pub mod service;
14mod tx;
15mod txpool;
16pub mod types;
17
18pub use error::TxPoolError;
19pub use free::transaction_blob_hash;
20pub use tx::TxEntry;
21
22#[cfg(test)]
23mod test {
24    use cuprate_test_utils as _;
25    use hex_literal as _;
26    use tempfile as _;
27}