Skip to content

Commit c3a281c

Browse files
committed
fix mempool_persist.py dump issue, missing sync with validation interface.
1 parent 67c754a commit c3a281c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/mempool_persist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def run_test(self):
6969
assert_equal(len(self.nodes[1].getrawmempool()), 0)
7070

7171
# Verify accounting of mempool transactions after restart is correct
72-
#self.nodes[2].syncwithvalidationinterfacequeue() # Flush mempool to wallet
72+
self.nodes[2].syncwithvalidationinterfacequeue() # Flush mempool to wallet
7373
assert_equal(node2_balance, self.nodes[2].getbalance())
7474

7575
self.log.debug("Stop-start node0 with -persistmempool=0. Verify that it doesn't load its mempool.dat file.")

0 commit comments

Comments
 (0)