mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-29 16:24:22 +00:00
Merge pull request #7137
cfdc662 Explicitly set chain limits in replace-by-fee test (Suhas Daftuar)
This commit is contained in:
commit
16f4a6e0fe
@ -73,7 +73,12 @@ class ReplaceByFeeTest(BitcoinTestFramework):
|
|||||||
def setup_network(self):
|
def setup_network(self):
|
||||||
self.nodes = []
|
self.nodes = []
|
||||||
self.nodes.append(start_node(0, self.options.tmpdir, ["-maxorphantx=1000",
|
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
|
self.is_network_split = False
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user