qa: Remove redundant checkmempool/checkblockindex extra_args

This commit is contained in:
MarcoFalke
2018-08-08 14:30:09 -04:00
parent df9f712746
commit fa31ca0c22
5 changed files with 4 additions and 8 deletions

View File

@ -22,7 +22,7 @@ class ReindexTest(BitcoinTestFramework):
self.nodes[0].generate(3)
blockcount = self.nodes[0].getblockcount()
self.stop_nodes()
extra_args = [["-reindex-chainstate" if justchainstate else "-reindex", "-checkblockindex=1"]]
extra_args = [["-reindex-chainstate" if justchainstate else "-reindex"]]
self.start_nodes(extra_args)
wait_until(lambda: self.nodes[0].getblockcount() == blockcount)
self.log.info("Success")