Skip to content

Commit

Permalink
Merge pull request #7137
Browse files Browse the repository at this point in the history
cfdc662 Explicitly set chain limits in replace-by-fee test (Suhas Daftuar)
  • Loading branch information
laanwj committed Dec 1, 2015
2 parents bc1f427 + cfdc662 commit 16f4a6e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion qa/rpc-tests/replace-by-fee.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 16f4a6e

Please sign in to comment.