mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 22:50:59 +01:00
[refactor] Change MiniMinerMempoolEntry order
Changes MiniMinerMempoolEntry order to match the order of the params elsewhere in the codebase
This commit is contained in:
@@ -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},
|
||||
|
||||
Reference in New Issue
Block a user