diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-06-14 16:00:39 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-06-14 16:12:14 +0200 |
| commit | 228c319a944b0ba7c835b1909ee1c2056c652eb1 (patch) | |
| tree | da55fe8768d943b98dc0b78cd1a8b213be369399 /src/init.cpp | |
| parent | Merge #9738: gettxoutproof() should return consistent result (diff) | |
| parent | Turn TryCreateDirectory() into TryCreateDirectories() (diff) | |
| download | discoin-228c319a944b0ba7c835b1909ee1c2056c652eb1.tar.xz discoin-228c319a944b0ba7c835b1909ee1c2056c652eb1.zip | |
Merge #9895: Turn TryCreateDirectory() into TryCreateDirectories()
1d1ea9f Turn TryCreateDirectory() into TryCreateDirectories() (Marko Bencun)
Tree-SHA512: 49a524167bcf66e351a964c88d09cb3bcee12769a32da83410e3ba649fa4bcdbf0478d41e4d09bb55adb9b3f122e742271db6feb30bbafe2a7973542b5f10f79
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index 2b25405f7..ed7695344 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1408,8 +1408,6 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler) fReindex = GetBoolArg("-reindex", false); bool fReindexChainState = GetBoolArg("-reindex-chainstate", false); - fs::create_directories(GetDataDir() / "blocks"); - // cache size calculations int64_t nTotalCache = (GetArg("-dbcache", nDefaultDbCache) << 20); nTotalCache = std::max(nTotalCache, nMinDbCache << 20); // total cache cannot be less than nMinDbCache |