1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
crate::ix!();

/**
  | Information about a mempool transaction.
  |
  */
pub struct TxMemPoolInfo
{
    /**
      | The transaction itself
      |
      */
    pub tx:          TransactionRef,

    /**
      | Time the transaction entered the mempool.
      |
      */
    pub time:        OffsetDateTime, /* seconds */

    /**
      | Fee of the transaction.
      |
      */
    pub fee:         Amount,

    /**
      | Virtual size of the transaction.
      |
      */
    pub vsize:       usize,

    /**
      | The fee delta.
      |
      */
    pub n_fee_delta: i64,
}