aboutsummaryrefslogtreecommitdiff
path: root/src/util/system.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-06-27 14:11:25 -0400
committerMarcoFalke <falke.marco@gmail.com>2019-06-27 14:42:06 -0400
commitfa69c3e6ca71800376761e264320c363f072dc2f (patch)
treeccd6bdbfb4f351c08928a18ed31875d3ecefa9ce /src/util/system.h
parent3077f11dadffbc8f2575449fc0177c91a9c3e046 (diff)
downloadbitcoin-fa69c3e6ca71800376761e264320c363f072dc2f.tar.xz
util: Explain why the path is cached
Diffstat (limited to 'src/util/system.h')
-rw-r--r--src/util/system.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/util/system.h b/src/util/system.h
index 1a83cb67b1..15d7b1b402 100644
--- a/src/util/system.h
+++ b/src/util/system.h
@@ -1,5 +1,5 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
-// Copyright (c) 2009-2018 The Bitcoin Core developers
+// Copyright (c) 2009-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.
@@ -20,18 +20,16 @@
#include <fs.h>
#include <logging.h>
#include <sync.h>
-#include <util/threadnames.h>
#include <tinyformat.h>
#include <util/memory.h>
+#include <util/threadnames.h>
#include <util/time.h>
-#include <atomic>
#include <exception>
#include <map>
#include <set>
#include <stdint.h>
#include <string>
-#include <unordered_set>
#include <utility>
#include <vector>
@@ -85,6 +83,7 @@ fs::path GetDefaultDataDir();
// The blocks directory is always net specific.
const fs::path &GetBlocksDir();
const fs::path &GetDataDir(bool fNetSpecific = true);
+/** Tests only */
void ClearDatadirCache();
fs::path GetConfigFile(const std::string& confPath);
#ifdef WIN32