diff options
author | MacroFake <falke.marco@gmail.com> | 2022-07-20 15:59:03 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-08-02 15:23:24 +0200 |
commit | fa148602e67fe035b1b21eff6c0b656919ac2d45 (patch) | |
tree | 603358f5030d2335df4b0df648fbcae2aa5353c2 /src/txmempool.cpp | |
parent | fa468bdfb62dec286cb977db78d3e47b64dafeba (diff) |
Remove ::fRequireStandard global
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r-- | src/txmempool.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 7eff6bdbe3..f520f4705c 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -458,6 +458,7 @@ CTxMemPool::CTxMemPool(const Options& opts) minerPolicyEstimator{opts.estimator}, m_max_size_bytes{opts.max_size_bytes}, m_expiry{opts.expiry}, + m_require_standard{opts.require_standard}, m_full_rbf{opts.full_rbf}, m_limits{opts.limits} { |