ckb_tx_pool/
lib.rs

1//! CKB Tx-pool stores transactions,
2//! design for CKB [Two-Step-Transaction-Confirmation](https://github.com/nervosnetwork/rfcs/blob/master/rfcs/0020-ckb-consensus-protocol/0020-ckb-consensus-protocol.md#Two-Step-Transaction-Confirmation) mechanism
3
4pub mod block_assembler;
5mod callback;
6mod component;
7pub mod error;
8mod persisted;
9pub mod pool;
10mod pool_cell;
11mod process;
12pub mod service;
13mod util;
14mod verify_mgr;
15
16pub use ckb_jsonrpc_types::BlockTemplate;
17pub use component::entry::TxEntry;
18pub use pool::TxPool;
19pub use process::PlugTarget;
20pub use service::{TxPoolController, TxPoolServiceBuilder};
21pub use tokio::sync::RwLock as TokioRwLock;