File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -78,8 +78,8 @@ class CTxMemPoolEntry
78
78
const int32_t nTxWeight; // !< ... and avoid recomputing tx weight (also used for GetTxSize())
79
79
const size_t nUsageSize; // !< ... and total memory usage
80
80
const int64_t nTime; // !< Local time when entering the mempool
81
+ const uint64_t entry_sequence; // !< Sequence number used to determine whether this transaction is too recent for relay
81
82
const unsigned int entryHeight; // !< Chain height when entering the mempool
82
- const uint64_t entry_sequence; // !< Sequence number used to determine w hether this transaction is too recent for relay
83
83
const bool spendsCoinbase; // !< keep track of transactions that spend a coinbase
84
84
const int64_t sigOpCost; // !< Total sigop cost
85
85
CAmount m_modified_fee; // !< Used for determining the priority of the transaction for mining in a block
@@ -110,8 +110,8 @@ class CTxMemPoolEntry
110
110
nTxWeight{GetTransactionWeight (*tx)},
111
111
nUsageSize{RecursiveDynamicUsage (tx)},
112
112
nTime{time},
113
- entryHeight{entry_height},
114
113
entry_sequence{entry_sequence},
114
+ entryHeight{entry_height},
115
115
spendsCoinbase{spends_coinbase},
116
116
sigOpCost{sigops_cost},
117
117
m_modified_fee{nFee},
You can’t perform that action at this time.
0 commit comments