node::MiniMinerMempoolEntry::MiniMinerMempoolEntry

Construct an entry from a transaction and its individual and ancestor totals.

Synopsis

Declared in <node/mini_miner.h>

explicit
MiniMinerMempoolEntry(
    CTransactionRef const& tx_in,
    int64_t vsize_self,
    int64_t vsize_ancestor,
    CAmount fee_self,
    CAmount fee_ancestor);

Parameters

NameDescription
tx_inThe transaction this entry represents.
vsize_selfThe transaction's own virtual size.
vsize_ancestorThe virtual size of the transaction together with its ancestors.
fee_selfThe transaction's own modified fee.
fee_ancestorThe modified fee of the transaction together with its ancestors.