Skip to content

Commit 16f4a6e

Browse files
committed
Merge pull request #7137
cfdc662 Explicitly set chain limits in replace-by-fee test (Suhas Daftuar)
2 parents bc1f427 + cfdc662 commit 16f4a6e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

qa/rpc-tests/replace-by-fee.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,12 @@ class ReplaceByFeeTest(BitcoinTestFramework):
7373
def setup_network(self):
7474
self.nodes = []
7575
self.nodes.append(start_node(0, self.options.tmpdir, ["-maxorphantx=1000",
76-
"-relaypriority=0", "-whitelist=127.0.0.1"]))
76+
"-relaypriority=0", "-whitelist=127.0.0.1",
77+
"-limitancestorcount=50",
78+
"-limitancestorsize=101",
79+
"-limitdescendantcount=200",
80+
"-limitdescendantsize=101"
81+
]))
7782
self.is_network_split = False
7883

7984
def run_test(self):

0 commit comments

Comments
 (0)