brk_mempool 0.3.0-beta.8

Bitcoin mempool monitor with fee estimation
Documentation
1
2
3
4
5
6
7
8
9
10
use brk_types::{AddrMempoolStats, Txid};
use rustc_hash::FxHashSet;

/// Per-address mempool record: rolling stats plus the set of live
/// txids that touch the address (used to maintain `tx_count`).
#[derive(Default)]
pub struct AddrEntry {
    pub stats: AddrMempoolStats,
    pub txids: FxHashSet<Txid>,
}