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_types::TxidPrefix;
use rustc_hash::FxHashMap;

use super::{Addition, Removal};

/// Output of one pull cycle: the full diff, ready for the Applier.
pub struct Pulled {
    pub added: Vec<Addition>,
    pub removed: FxHashMap<TxidPrefix, Removal>,
}