brk_mempool 0.3.0-beta.8

Bitcoin mempool monitor with fee estimation
Documentation
1
2
3
4
5
6
7
8
use brk_types::TxidPrefix;

use super::{TxAddition, TxRemoval};

pub struct TxsPulled {
    pub added: Vec<TxAddition>,
    pub removed: Vec<(TxidPrefix, TxRemoval)>,
}