diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-01-14 21:26:19 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-03-18 18:43:52 +0100 |
commit | faa9ef49d18da9223220afcc263ac91a74c291a6 (patch) | |
tree | f0c9556bf0f153dda55dcb3d0b653506fcd83ec3 /src/txmempool.h | |
parent | 6834e02c896b97ecbd2ad8251c5b09612b27bf10 (diff) |
fuzz: Add tx_pool fuzz targets
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 9d4ea760e7..c3a9bd851d 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -476,7 +476,7 @@ enum class MemPoolRemovalReason { */ class CTxMemPool { -private: +protected: const int m_check_ratio; //!< Value n means that 1 times in n we check. std::atomic<unsigned int> nTransactionsUpdated{0}; //!< Used by getblocktemplate to trigger CreateNewBlock() invocation CBlockPolicyEstimator* minerPolicyEstimator; |