diff options
author | Marko Bencun <marko.bencun@monetas.net> | 2017-02-22 18:10:00 +0900 |
---|---|---|
committer | Marko Bencun <marko.bencun@monetas.net> | 2017-06-14 00:04:13 +0200 |
commit | 1d1ea9f0962a331c21a3029a0302e5906a396f56 (patch) | |
tree | 0d4f9a7b2ff1d68ad35fa42cf05f05fff0ae6b51 /src/wallet | |
parent | a4ca0b042365061020627a8c045cddacea3312ec (diff) |
Turn TryCreateDirectory() into TryCreateDirectories()
Use case: TryCreateDirectory(GetDataDir() / "blocks" / "index") would
fail if the blocks directory was not explicitly created before.
The line that did so was in a weird location and could be removed as a
result.
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/db.cpp b/src/wallet/db.cpp index 25f6bdd9d9..4573be8b23 100644 --- a/src/wallet/db.cpp +++ b/src/wallet/db.cpp @@ -75,7 +75,7 @@ bool CDBEnv::Open(const fs::path& pathIn) strPath = pathIn.string(); fs::path pathLogDir = pathIn / "database"; - TryCreateDirectory(pathLogDir); + TryCreateDirectories(pathLogDir); fs::path pathErrorFile = pathIn / "db.log"; LogPrintf("CDBEnv::Open: LogDir=%s ErrorFile=%s\n", pathLogDir.string(), pathErrorFile.string()); |