policy: enable full-rbf by default

Enable full rbf (mempool policy) by default and update tests accordingly.
This commit is contained in:
Peter Todd
2023-08-04 13:56:04 +00:00
committed by 1440000bytes
parent 195e98ea8e
commit 590456e3f1
5 changed files with 11 additions and 4 deletions

View File

@ -26,15 +26,18 @@ class ReplaceByFeeTest(BitcoinTestFramework):
def set_test_params(self):
self.num_nodes = 2
# both nodes disable full-rbf to test BIP125 signaling
self.extra_args = [
[
"-mempoolfullrbf=0",
"-limitancestorcount=50",
"-limitancestorsize=101",
"-limitdescendantcount=200",
"-limitdescendantsize=101",
],
# second node has default mempool parameters
# second node has default mempool parameters, besides mempoolfullrbf being disabled
[
"-mempoolfullrbf=0",
],
]
self.supports_cli = False