aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests
diff options
context:
space:
mode:
authorSuhas Daftuar <sdaftuar@gmail.com>2015-11-30 12:35:24 -0500
committerSuhas Daftuar <sdaftuar@gmail.com>2015-11-30 12:35:24 -0500
commitcfdc66280f4075885fc41b244217b7560a66874c (patch)
tree70f0a56147641c348e6d16decf8456213d8a9fa0 /qa/rpc-tests
parent34e02e0147188a7e364489db23128a05505e7a4c (diff)
downloadbitcoin-cfdc66280f4075885fc41b244217b7560a66874c.tar.xz
Explicitly set chain limits in replace-by-fee test
Diffstat (limited to 'qa/rpc-tests')
-rwxr-xr-xqa/rpc-tests/replace-by-fee.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/qa/rpc-tests/replace-by-fee.py b/qa/rpc-tests/replace-by-fee.py
index 537a1ed8d9..6e9e0b304c 100755
--- a/qa/rpc-tests/replace-by-fee.py
+++ b/qa/rpc-tests/replace-by-fee.py
@@ -73,7 +73,12 @@ class ReplaceByFeeTest(BitcoinTestFramework):
def setup_network(self):
self.nodes = []
self.nodes.append(start_node(0, self.options.tmpdir, ["-maxorphantx=1000",
- "-relaypriority=0", "-whitelist=127.0.0.1"]))
+ "-relaypriority=0", "-whitelist=127.0.0.1",
+ "-limitancestorcount=50",
+ "-limitancestorsize=101",
+ "-limitdescendantcount=200",
+ "-limitdescendantsize=101"
+ ]))
self.is_network_split = False
def run_test(self):