usebrk_types::{AddrMempoolStats, Txid};userustc_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)]pubstructAddrEntry{pubstats: AddrMempoolStats,
pubtxids:FxHashSet<Txid>,
}