diff options
author | Jeremy Rubin <j@rubin.io> | 2021-03-17 15:29:15 -0700 |
---|---|---|
committer | Jeremy Rubin <j@rubin.io> | 2021-12-08 23:07:56 -0800 |
commit | c49daf9885e86ba08acdc8332d2a34bc5951a487 (patch) | |
tree | 75895da44d7ff89bce22608f7209ad6205faf359 | |
parent | f727d814bd8df5a5346c128dd4573e457c1970e1 (diff) |
[TESTS] Increase limitancestorcount in tournament RPC test to showcase improved algorithm
-rwxr-xr-x | test/functional/mempool_updatefromblock.py | 2 |
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() |