aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2021-10-28 14:13:04 -0400
committerCarl Dong <contact@carldong.me>2022-06-28 15:42:23 -0400
commitaa9141cd8185cb7ad532bc16feb9d302b05d9697 (patch)
tree18dad4b3fcdeb21bcfd473528e1764a78fffd2b9 /src/txmempool.cpp
parent51c7a41a5eb6fcb60333812c770d80227cf7b64d (diff)
downloadbitcoin-aa9141cd8185cb7ad532bc16feb9d302b05d9697.tar.xz
mempool: Pass in -mempoolexpiry instead of referencing gArgs
- Store the mempool expiry (-mempoolexpiry) in CTxMemPool as a std::chrono::seconds member. - Remove the requirement to explicitly specify a mempool expiry for LimitMempoolSize(...), just use the newly-introduced member. - Remove all now-unnecessary instances of: std::chrono::hours{gArgs.GetIntArg("-mempoolexpiry", DEFAULT_MEMPOOL_EXPIRY)}
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r--src/txmempool.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp
index 3e75f2db8d..a2220e6874 100644
--- a/src/txmempool.cpp
+++ b/src/txmempool.cpp
@@ -454,7 +454,8 @@ void CTxMemPoolEntry::UpdateAncestorState(int64_t modifySize, CAmount modifyFee,
CTxMemPool::CTxMemPool(const Options& opts)
: m_check_ratio{opts.check_ratio},
minerPolicyEstimator{opts.estimator},
- m_max_size_bytes{opts.max_size_bytes}
+ m_max_size_bytes{opts.max_size_bytes},
+ m_expiry{opts.expiry}
{
_clear(); //lock free clear
}