You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/txmempool.h
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -479,21 +479,21 @@ class CTxMemPool
479
479
protected:
480
480
constint m_check_ratio; //!< Value n means that 1 times in n we check.
481
481
std::atomic<unsignedint> nTransactionsUpdated{0}; //!< Used by getblocktemplate to trigger CreateNewBlock() invocation
482
-
CBlockPolicyEstimator* minerPolicyEstimator;
482
+
CBlockPolicyEstimator* constminerPolicyEstimator;
483
483
484
484
uint64_t totalTxSize GUARDED_BY(cs); //!< sum of all mempool tx's virtual sizes. Differs from serialized tx size since witness data is discounted. Defined in BIP 141.
485
485
CAmount m_total_fee GUARDED_BY(cs); //!< sum of all mempool tx's fees (NOT modified fee)
486
486
uint64_t cachedInnerUsage GUARDED_BY(cs); //!< sum of dynamic memory usage of all the map elements (NOT the maps themselves)
487
487
488
-
mutableint64_t lastRollingFeeUpdate;
489
-
mutablebool blockSinceLastRollingFeeBump;
490
-
mutabledouble rollingMinimumFeeRate; //!< minimum fee to get into the pool, decreases exponentially
0 commit comments