aboutsummaryrefslogtreecommitdiff
path: root/test/functional/mempool_updatefromblock.py
diff options
context:
space:
mode:
authorJeremy Rubin <j@rubin.io>2021-03-17 15:29:15 -0700
committerJeremy Rubin <j@rubin.io>2021-12-08 23:07:56 -0800
commitc49daf9885e86ba08acdc8332d2a34bc5951a487 (patch)
tree75895da44d7ff89bce22608f7209ad6205faf359 /test/functional/mempool_updatefromblock.py
parentf727d814bd8df5a5346c128dd4573e457c1970e1 (diff)
downloadbitcoin-c49daf9885e86ba08acdc8332d2a34bc5951a487.tar.xz
[TESTS] Increase limitancestorcount in tournament RPC test to showcase improved algorithm
Diffstat (limited to 'test/functional/mempool_updatefromblock.py')
-rwxr-xr-xtest/functional/mempool_updatefromblock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mempool_updatefromblock.py b/test/functional/mempool_updatefromblock.py
index 16c15e3f74..51de582ce0 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()