brk_mempool 0.3.2

Bitcoin mempool monitor with fee estimation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use brk_types::{FeeRate, Txid};

use crate::TxRemoval;

#[derive(Debug, Clone, Copy)]
pub struct TxRemoved {
    pub txid: Txid,
    pub reason: TxRemoval,
    /// Package-effective rate at burial. Same value the tx reported
    /// while alive - RBF predecessors keep their package rate, not a
    /// misleading isolated fee/vsize.
    pub chunk_rate: FeeRate,
}