ckb-tx-pool 1.2.2

CKB Tx-pool stores transactions, which is designed for CKB Two Step Transaction Confirmation mechanism
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod entry;
pub mod tx_selector;

pub(crate) mod edges;
pub(crate) mod links;
pub(crate) mod orphan;
pub(crate) mod pool_map;
pub(crate) mod recent_reject;
pub(crate) mod sort_key;
#[cfg(test)]
mod tests;
pub(crate) mod verify_queue;

pub use self::entry::TxEntry;