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/wallet/db.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/wallet/db.cpp')
| -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 844d61079..c8928a3b6 100644 --- a/src/wallet/db.cpp +++ b/src/wallet/db.cpp @@ -74,7 +74,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()); |