diff options
author | Anthony Towns <aj@erisian.com.au> | 2023-08-24 12:03:45 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2023-08-28 22:09:39 +1000 |
commit | e1dc15d69061e69351c72907444e8ded0ac7c88c (patch) | |
tree | 523bc917feb038d55d86e72b460241df8c5d3473 /src/kernel/mempool_options.h | |
parent | 83719146047947e588aa0c7b5eee02f44884553d (diff) |
config: default acceptnonstdtxn=0 on all chains
Previously, the default for acceptnonstdtxn defaulted to 0 on all
chains except testnet. Change this to be consistent across all
chains, and remove the parameter from chainparams entirely.
Diffstat (limited to 'src/kernel/mempool_options.h')
-rw-r--r-- | src/kernel/mempool_options.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/kernel/mempool_options.h b/src/kernel/mempool_options.h index 58bb3debbf..757be41b3c 100644 --- a/src/kernel/mempool_options.h +++ b/src/kernel/mempool_options.h @@ -23,6 +23,8 @@ static constexpr unsigned int DEFAULT_BLOCKSONLY_MAX_MEMPOOL_SIZE_MB{5}; static constexpr unsigned int DEFAULT_MEMPOOL_EXPIRY_HOURS{336}; /** Default for -mempoolfullrbf, if the transaction replaceability signaling is ignored */ static constexpr bool DEFAULT_MEMPOOL_FULL_RBF{false}; +/** Default for -acceptnonstdtxn */ +static constexpr bool DEFAULT_ACCEPT_NON_STD_TXN{false}; namespace kernel { /** |