aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/test_framework.py
diff options
context:
space:
mode:
authorFabian Jahr <fjahr@protonmail.com>2019-08-26 15:49:57 -0400
committerFabian Jahr <fjahr@protonmail.com>2021-04-19 20:31:01 +0200
commit6a4c0c09ab4d073a26c3c4a02783d5dcd88f6eef (patch)
tree365467131a1359f26984e093fbbcbc87e117d0b5 /test/functional/test_framework/test_framework.py
parent3f166ecc125fce6ccd995687fa16572090a5d099 (diff)
downloadbitcoin-6a4c0c09ab4d073a26c3c4a02783d5dcd88f6eef.tar.xz
test: Add functional test for Coinstats index
Diffstat (limited to 'test/functional/test_framework/test_framework.py')
-rwxr-xr-xtest/functional/test_framework/test_framework.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py
index 02eb10b5a4..5c10cc3687 100755
--- a/test/functional/test_framework/test_framework.py
+++ b/test/functional/test_framework/test_framework.py
@@ -757,7 +757,7 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass):
os.rmdir(cache_path('wallets')) # Remove empty wallets dir
for entry in os.listdir(cache_path()):
- if entry not in ['chainstate', 'blocks']: # Only keep chainstate and blocks folder
+ if entry not in ['chainstate', 'blocks', 'indexes']: # Only indexes, chainstate and blocks folders
os.remove(cache_path(entry))
for i in range(self.num_nodes):