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, Sats, Timestamp, Txid, VSize};

use crate::cycle::AddedKind;

#[derive(Debug, Clone, Copy)]
pub struct TxAdded {
    pub txid: Txid,
    pub fee: Sats,
    pub vsize: VSize,
    pub fee_rate: FeeRate,
    pub first_seen: Timestamp,
    pub kind: AddedKind,
}