brk_mempool 0.3.0-beta.7

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

/// Raw RPC output for one pull cycle. Pure data; no interpretation.
pub struct Fetched {
    pub entries_info: Vec<MempoolEntryInfo>,
    pub new_raws: FxHashMap<Txid, RawTx>,
    pub parent_raws: FxHashMap<Txid, RawTx>,
}