gitian: bump descriptors for master
[bitcoinplatinum.git] / qa / rpc-tests / create_cache.py
blob1ace6310d0d06c359db0dd4056324198c81f9a2f
1 #!/usr/bin/env python3
2 # Copyright (c) 2016 The Bitcoin Core developers
3 # Distributed under the MIT software license, see the accompanying
4 # file COPYING or http://www.opensource.org/licenses/mit-license.php.
7 # Helper script to create the cache
8 # (see BitcoinTestFramework.setup_chain)
11 from test_framework.test_framework import BitcoinTestFramework
13 class CreateCache(BitcoinTestFramework):
15 def __init__(self):
16 super().__init__()
18 # Test network and test nodes are not required:
19 self.num_nodes = 0
20 self.nodes = []
22 def setup_network(self):
23 pass
25 def run_test(self):
26 pass
28 if __name__ == '__main__':
29 CreateCache().main()