mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
2da9982e55
aaaaad6ac95b402fe18d019d67897ced6b316ee0 scripted-diff: Bump copyright of files changed in 2019 (MarcoFalke)
Pull request description:
ACKs for top commit:
practicalswift:
ACK aaaaad6ac95b402fe18d019d67897ced6b316ee0
promag:
ACK aaaaad6ac95b402fe18d019d67897ced6b316ee0 🎉
fanquake:
ACK aaaaad6ac95b402fe18d019d67897ced6b316ee0 - going to merge this now because the year is over and conflicts are minimal.
Tree-SHA512: 58cb1f53bc4c1395b2766f36fabc7e2332e213780a802762fff0afd59468dad0c3265f553714d761c7a2c44ff90f7dc250f04458f4b2eb8eef8b94f8c9891321
40 lines
1.7 KiB
Python
Executable File
40 lines
1.7 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2018-2019 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
"""Test the blocksdir option.
|
|
"""
|
|
|
|
import os
|
|
import shutil
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework, initialize_datadir
|
|
|
|
|
|
class BlocksdirTest(BitcoinTestFramework):
|
|
def set_test_params(self):
|
|
self.setup_clean_chain = True
|
|
self.num_nodes = 1
|
|
|
|
def run_test(self):
|
|
self.stop_node(0)
|
|
assert os.path.isdir(os.path.join(self.nodes[0].datadir, self.chain, "blocks"))
|
|
assert not os.path.isdir(os.path.join(self.nodes[0].datadir, "blocks"))
|
|
shutil.rmtree(self.nodes[0].datadir)
|
|
initialize_datadir(self.options.tmpdir, 0, self.chain)
|
|
self.log.info("Starting with nonexistent blocksdir ...")
|
|
blocksdir_path = os.path.join(self.options.tmpdir, 'blocksdir')
|
|
self.nodes[0].assert_start_raises_init_error(["-blocksdir=" + blocksdir_path], 'Error: Specified blocks directory "' +
|
|
blocksdir_path + '" does not exist.')
|
|
os.mkdir(blocksdir_path)
|
|
self.log.info("Starting with existing blocksdir ...")
|
|
self.start_node(0, ["-blocksdir=" + blocksdir_path])
|
|
self.log.info("mining blocks..")
|
|
self.nodes[0].generatetoaddress(10, self.nodes[0].get_deterministic_priv_key().address)
|
|
assert os.path.isfile(os.path.join(blocksdir_path, self.chain, "blocks", "blk00000.dat"))
|
|
assert os.path.isdir(os.path.join(self.nodes[0].datadir, self.chain, "blocks", "index"))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
BlocksdirTest().main()
|