diff options
| author | MarcoFalke <[email protected]> | 2016-09-13 19:35:35 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-09-13 19:34:11 +0200 |
| commit | fa27d990ee38a9dce1da71098be010e4a81b18c3 (patch) | |
| tree | e693e5460f5121ef9055d35fe3623a6673e67938 /qa/rpc-tests/create_cache.py | |
| parent | Merge #8693: add witness address to address book (diff) | |
| download | discoin-fa27d990ee38a9dce1da71098be010e4a81b18c3.tar.xz discoin-fa27d990ee38a9dce1da71098be010e4a81b18c3.zip | |
[qa] create_cache: Delete temp dir when done
Diffstat (limited to 'qa/rpc-tests/create_cache.py')
| -rwxr-xr-x | qa/rpc-tests/create_cache.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/qa/rpc-tests/create_cache.py b/qa/rpc-tests/create_cache.py index b6161e091..1ace6310d 100755 --- a/qa/rpc-tests/create_cache.py +++ b/qa/rpc-tests/create_cache.py @@ -12,9 +12,15 @@ from test_framework.test_framework import BitcoinTestFramework class CreateCache(BitcoinTestFramework): + def __init__(self): + super().__init__() + + # Test network and test nodes are not required: + self.num_nodes = 0 + self.nodes = [] + def setup_network(self): - # Don't setup any test nodes - self.options.noshutdown = True + pass def run_test(self): pass |