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
Name |
Description |
tx_in |
The transaction this entry represents. |
vsize_self |
The transaction's own virtual size. |
vsize_ancestor |
The virtual size of the transaction together with its ancestors. |
fee_self |
The transaction's own modified fee. |
fee_ancestor |
The modified fee of the transaction together with its ancestors. |
Created with MrDocs