diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2018-03-09 12:12:43 +0800 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2018-03-11 12:37:20 +0800 |
commit | 386a6b62a8a1db9dd0f354cb95b7585f555c7e5d (patch) | |
tree | 4179dce98f66712dd2f266ed0568b8911cbf8831 /src/txdb.cpp | |
parent | ed6ae8059cdbad60466807a7cfb23e5540a50051 (diff) |
Allow to optional specify the directory for the blocks storage
Diffstat (limited to 'src/txdb.cpp')
-rw-r--r-- | src/txdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txdb.cpp b/src/txdb.cpp index 293d43c7b3..f6d60411b4 100644 --- a/src/txdb.cpp +++ b/src/txdb.cpp @@ -147,7 +147,7 @@ size_t CCoinsViewDB::EstimateSize() const return db.EstimateSize(DB_COIN, (char)(DB_COIN+1)); } -CBlockTreeDB::CBlockTreeDB(size_t nCacheSize, bool fMemory, bool fWipe) : CDBWrapper(GetDataDir() / "blocks" / "index", nCacheSize, fMemory, fWipe) { +CBlockTreeDB::CBlockTreeDB(size_t nCacheSize, bool fMemory, bool fWipe) : CDBWrapper(GetBlocksDir() / "index", nCacheSize, fMemory, fWipe) { } bool CBlockTreeDB::ReadBlockFileInfo(int nFile, CBlockFileInfo &info) { |