aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Todd <pete@petertodd.org>2023-08-04 13:56:04 +0000
committer1440000bytes <alicexbt@protonmail.com>2024-08-02 20:22:20 +0000
commit590456e3f1043ba0680e0afec9fd7653db1098bb (patch)
treefa26fe0607553464d72be71277d21451c96aa11f /src
parent195e98ea8e7746a84bbf980d547f88ee5242f35a (diff)
policy: enable full-rbf by default
Enable full rbf (mempool policy) by default and update tests accordingly.
Diffstat (limited to 'src')
-rw-r--r--src/kernel/mempool_options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/mempool_options.h b/src/kernel/mempool_options.h
index 0850b2e60e..4e1e24a11d 100644
--- a/src/kernel/mempool_options.h
+++ b/src/kernel/mempool_options.h
@@ -22,7 +22,7 @@ static constexpr unsigned int DEFAULT_BLOCKSONLY_MAX_MEMPOOL_SIZE_MB{5};
/** Default for -mempoolexpiry, expiration time for mempool transactions in hours */
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};
+static constexpr bool DEFAULT_MEMPOOL_FULL_RBF{true};
/** Whether to fall back to legacy V1 serialization when writing mempool.dat */
static constexpr bool DEFAULT_PERSIST_V1_DAT{false};
/** Default for -acceptnonstdtxn */