aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_reindex.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-08-08 14:30:09 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-08-08 14:29:19 -0400
commitfa31ca0c22b35beaceaf131b8f598280abdfd58d (patch)
tree1d065c1917f17c836b346dda97d8a70a91556eaf /test/functional/feature_reindex.py
parentdf9f71274645a917e2578c52a1c59745bce8112d (diff)
downloadbitcoin-fa31ca0c22b35beaceaf131b8f598280abdfd58d.tar.xz
qa: Remove redundant checkmempool/checkblockindex extra_args
Diffstat (limited to 'test/functional/feature_reindex.py')
-rwxr-xr-xtest/functional/feature_reindex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_reindex.py b/test/functional/feature_reindex.py
index 712de401ec..f30e1191e3 100755
--- a/test/functional/feature_reindex.py
+++ b/test/functional/feature_reindex.py
@@ -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")