From c49daf9885e86ba08acdc8332d2a34bc5951a487 Mon Sep 17 00:00:00 2001 From: Jeremy Rubin Date: Wed, 17 Mar 2021 15:29:15 -0700 Subject: [PATCH] [TESTS] Increase limitancestorcount in tournament RPC test to showcase improved algorithm --- test/functional/mempool_updatefromblock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/mempool_updatefromblock.py b/test/functional/mempool_updatefromblock.py index 16c15e3f749..51de582ce0f 100755 --- a/test/functional/mempool_updatefromblock.py +++ b/test/functional/mempool_updatefromblock.py @@ -17,7 +17,7 @@ from test_framework.util import assert_equal class MempoolUpdateFromBlockTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 1 - self.extra_args = [['-limitdescendantsize=1000', '-limitancestorsize=1000']] + self.extra_args = [['-limitdescendantsize=1000', '-limitancestorsize=1000', '-limitancestorcount=100']] def skip_test_if_missing_module(self): self.skip_if_no_wallet()