Skip to content

Commit

Permalink
qa: Fix some tests to work on native windows
Browse files Browse the repository at this point in the history
Coming from btc@fa3528a85b05ea9507077f3eb340c9fb189251a6
  • Loading branch information
furszy committed Feb 24, 2021
1 parent 65cf7e1 commit 3ace13b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/functional/mempool_persist.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def run_test(self):

self.log.debug("Stop-start node0 and node1. Verify that node0 has the transactions in its mempool and node1 does not.")
self.stop_nodes()
self.start_node(1) # Give this one a head-start, so we can be "extra-sure" that it didn't load anything later
# Give this node a head-start, so we can be "extra-sure" that it didn't load anything later
# Also don't store the mempool, to keep the datadir clean
self.start_node(1, extra_args=["-persistmempool=0"])
self.start_node(0)
self.start_node(2)
# Give pivxd a second to reload the mempool
Expand Down

0 comments on commit 3ace13b

Please sign in to comment.