diff options
| author | Jorge Timón <[email protected]> | 2019-08-22 18:17:31 +0200 |
|---|---|---|
| committer | Jorge Timón <[email protected]> | 2019-10-26 13:24:39 +0200 |
| commit | 1abcecc40c518a98b7d17880657ec0247abdf125 (patch) | |
| tree | b78f9540641279b72e2288e278b54ef08c6c2fcb /test/functional/feature_loadblock.py | |
| parent | Merge #17257: gui: disable font antialiasing for QR image address (diff) | |
| download | discoin-1abcecc40c518a98b7d17880657ec0247abdf125.tar.xz discoin-1abcecc40c518a98b7d17880657ec0247abdf125.zip | |
Tests: Use self.chain instead of 'regtest' in almost all current tests
Diffstat (limited to 'test/functional/feature_loadblock.py')
| -rwxr-xr-x | test/functional/feature_loadblock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_loadblock.py b/test/functional/feature_loadblock.py index bf2a4ff61..5dd0b0e5a 100755 --- a/test/functional/feature_loadblock.py +++ b/test/functional/feature_loadblock.py @@ -37,7 +37,7 @@ class LoadblockTest(BitcoinTestFramework): cfg_file = os.path.join(data_dir, "linearize.cfg") bootstrap_file = os.path.join(self.options.tmpdir, "bootstrap.dat") genesis_block = self.nodes[0].getblockhash(0) - blocks_dir = os.path.join(data_dir, "regtest", "blocks") + blocks_dir = os.path.join(data_dir, self.chain, "blocks") hash_list = tempfile.NamedTemporaryFile(dir=data_dir, mode='w', delete=False, |