diff options
author | Carl Dong <contact@carldong.me> | 2022-07-13 13:42:15 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2022-07-15 12:26:20 -0400 |
commit | aa306765419f7dbea12b12e15553039835ba0e4d (patch) | |
tree | 2d5dcfcc0e8746f7bfa07bb89b77251fab96e8c7 /src/validation.h | |
parent | 06b88ffb8ae7f2b2a93a32908cd80e77fafd270c (diff) |
Move DEFAULT_PERSIST_MEMPOOL out of libbitcoinkernel
It is no longer used by anything inside libbitcoinkernel, move it to
node/mempool_persist_args.h where it belongs.
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/validation.h b/src/validation.h index fad94af8e2..df4fc77980 100644 --- a/src/validation.h +++ b/src/validation.h @@ -68,8 +68,6 @@ static const bool DEFAULT_CHECKPOINTS_ENABLED = true; static const bool DEFAULT_TXINDEX = false; static constexpr bool DEFAULT_COINSTATSINDEX{false}; static const char* const DEFAULT_BLOCKFILTERINDEX = "0"; -/** Default for -persistmempool */ -static const bool DEFAULT_PERSIST_MEMPOOL = true; /** Default for -stopatheight */ static const int DEFAULT_STOPATHEIGHT = 0; /** Block files containing a block-height within MIN_BLOCKS_TO_KEEP of ActiveChain().Tip() will not be pruned. */ |