aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuhas Daftuar <[email protected]>2015-11-30 12:35:24 -0500
committerSuhas Daftuar <[email protected]>2015-11-30 12:35:24 -0500
commitcfdc66280f4075885fc41b244217b7560a66874c (patch)
tree70f0a56147641c348e6d16decf8456213d8a9fa0
parentMerge pull request #7094 (diff)
downloaddiscoin-cfdc66280f4075885fc41b244217b7560a66874c.tar.xz
discoin-cfdc66280f4075885fc41b244217b7560a66874c.zip
Explicitly set chain limits in replace-by-fee test
-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 537a1ed8d..6e9e0b304 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):