[refactor] Change MiniMinerMempoolEntry order

Changes MiniMinerMempoolEntry order to match the order of the params
elsewhere in the codebase
This commit is contained in:
kevkevin
2023-11-06 20:12:13 -06:00
parent 0387ca0774
commit 43423fd834
3 changed files with 29 additions and 30 deletions

View File

@@ -34,11 +34,11 @@ class MiniMinerMempoolEntry
// methods can be called without holding that lock.
public:
explicit MiniMinerMempoolEntry(CAmount fee_self,
CAmount fee_ancestor,
explicit MiniMinerMempoolEntry(const CTransactionRef& tx_in,
int64_t vsize_self,
int64_t vsize_ancestor,
const CTransactionRef& tx_in):
CAmount fee_self,
CAmount fee_ancestor):
tx{tx_in},
vsize_individual{vsize_self},
vsize_with_ancestors{vsize_ancestor},