mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
Merge #11911: Free BerkeleyEnvironment instances when not in use
14bc2a17dd03ccd89f65a302328763ff22c710c2 Trivial: add doxygen-compatible comments relating to BerkeleyEnvironment (Pierre Rochard) 88b1d956fe3e38f2d2dd805feee9dadb0be9e8a9 Tests: add unit tests for GetWalletEnv (Pierre Rochard) f1f4bb7345b90853ec5037478173601035593d26 Free BerkeleyEnvironment instances when not in use (Russell Yanofsky) Pull request description: Instead of adding BerkeleyEnvironment objects permanently to the g_dbenvs map, use reference counted shared pointers and remove map entries when the last BerkeleyEnvironment reference goes out of scope. This change was requested by @TheBlueMatt and makes code that sets up mock databases cleaner. The mock database environment will now go out of scope and be reset on destruction so there is no need to call BerkeleyEnvironment::Reset() during wallet construction to clear out prior state. This change does affect bitcoin behavior slightly. On startup, instead of same wallet environments staying open throughout VerifyWallets() and OpenWallets() calls, VerifyWallets() will open and close an environment once for each wallet, and OpenWallets() will create its own environment(s) later. Tree-SHA512: 219d77a9e2268298435b86088f998795e059fdab1d2050ba284a9ab8d8a44961c9b5cf96e94ee521688108d23c6db680e3e3a999b8cb2ac2a8590f691d50668b
This commit is contained in:
parent
da33c9619c
commit
e681ffc3bb
@ -120,6 +120,7 @@ if ENABLE_WALLET
|
|||||||
BITCOIN_TESTS += \
|
BITCOIN_TESTS += \
|
||||||
wallet/test/coinjoin_tests.cpp \
|
wallet/test/coinjoin_tests.cpp \
|
||||||
wallet/test/accounting_tests.cpp \
|
wallet/test/accounting_tests.cpp \
|
||||||
|
wallet/test/db_tests.cpp \
|
||||||
wallet/test/psbt_wallet_tests.cpp \
|
wallet/test/psbt_wallet_tests.cpp \
|
||||||
wallet/test/wallet_tests.cpp \
|
wallet/test/wallet_tests.cpp \
|
||||||
wallet/test/wallet_crypto_tests.cpp \
|
wallet/test/wallet_crypto_tests.cpp \
|
||||||
|
@ -48,7 +48,7 @@ void CheckUniqueFileid(const BerkeleyEnvironment& env, const std::string& filena
|
|||||||
}
|
}
|
||||||
|
|
||||||
CCriticalSection cs_db;
|
CCriticalSection cs_db;
|
||||||
std::map<std::string, BerkeleyEnvironment> g_dbenvs GUARDED_BY(cs_db); //!< Map from directory name to open db environment.
|
std::map<std::string, std::weak_ptr<BerkeleyEnvironment>> g_dbenvs GUARDED_BY(cs_db); //!< Map from directory name to db environment.
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
bool WalletDatabaseFileId::operator==(const WalletDatabaseFileId& rhs) const
|
bool WalletDatabaseFileId::operator==(const WalletDatabaseFileId& rhs) const
|
||||||
@ -80,19 +80,29 @@ bool IsWalletLoaded(const fs::path& wallet_path)
|
|||||||
LOCK(cs_db);
|
LOCK(cs_db);
|
||||||
auto env = g_dbenvs.find(env_directory.string());
|
auto env = g_dbenvs.find(env_directory.string());
|
||||||
if (env == g_dbenvs.end()) return false;
|
if (env == g_dbenvs.end()) return false;
|
||||||
return env->second.IsDatabaseLoaded(database_filename);
|
auto database = env->second.lock();
|
||||||
|
return database && database->IsDatabaseLoaded(database_filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
BerkeleyEnvironment* GetWalletEnv(const fs::path& wallet_path, std::string& database_filename)
|
/**
|
||||||
|
* @param[in] wallet_path Path to wallet directory. Or (for backwards compatibility only) a path to a berkeley btree data file inside a wallet directory.
|
||||||
|
* @param[out] database_filename Filename of berkeley btree data file inside the wallet directory.
|
||||||
|
* @return A shared pointer to the BerkeleyEnvironment object for the wallet directory, never empty because ~BerkeleyEnvironment
|
||||||
|
* erases the weak pointer from the g_dbenvs map.
|
||||||
|
* @post A new BerkeleyEnvironment weak pointer is inserted into g_dbenvs if the directory path key was not already in the map.
|
||||||
|
*/
|
||||||
|
std::shared_ptr<BerkeleyEnvironment> GetWalletEnv(const fs::path& wallet_path, std::string& database_filename)
|
||||||
{
|
{
|
||||||
fs::path env_directory;
|
fs::path env_directory;
|
||||||
SplitWalletPath(wallet_path, env_directory, database_filename);
|
SplitWalletPath(wallet_path, env_directory, database_filename);
|
||||||
LOCK(cs_db);
|
LOCK(cs_db);
|
||||||
// Note: An ununsed temporary BerkeleyEnvironment object may be created inside the
|
auto inserted = g_dbenvs.emplace(env_directory.string(), std::weak_ptr<BerkeleyEnvironment>());
|
||||||
// emplace function if the key already exists. This is a little inefficient,
|
if (inserted.second) {
|
||||||
// but not a big concern since the map will be changed in the future to hold
|
auto env = std::make_shared<BerkeleyEnvironment>(env_directory.string());
|
||||||
// pointers instead of objects, anyway.
|
inserted.first->second = env;
|
||||||
return &g_dbenvs.emplace(std::piecewise_construct, std::forward_as_tuple(env_directory.string()), std::forward_as_tuple(env_directory)).first->second;
|
return env;
|
||||||
|
}
|
||||||
|
return inserted.first->second.lock();
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -137,6 +147,7 @@ BerkeleyEnvironment::BerkeleyEnvironment(const fs::path& dir_path) : strPath(dir
|
|||||||
|
|
||||||
BerkeleyEnvironment::~BerkeleyEnvironment()
|
BerkeleyEnvironment::~BerkeleyEnvironment()
|
||||||
{
|
{
|
||||||
|
g_dbenvs.erase(strPath);
|
||||||
Close();
|
Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -214,10 +225,10 @@ bool BerkeleyEnvironment::Open(bool retry)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BerkeleyEnvironment::MakeMock()
|
//! Construct an in-memory mock Berkeley environment for testing and as a place-holder for g_dbenvs emplace
|
||||||
|
BerkeleyEnvironment::BerkeleyEnvironment()
|
||||||
{
|
{
|
||||||
if (fDbEnvInit)
|
Reset();
|
||||||
throw std::runtime_error("BerkeleyEnvironment::MakeMock: Already initialized");
|
|
||||||
|
|
||||||
boost::this_thread::interruption_point();
|
boost::this_thread::interruption_point();
|
||||||
|
|
||||||
@ -266,7 +277,7 @@ BerkeleyEnvironment::VerifyResult BerkeleyEnvironment::Verify(const std::string&
|
|||||||
bool BerkeleyBatch::Recover(const fs::path& file_path, void *callbackDataIn, bool (*recoverKVcallback)(void* callbackData, CDataStream ssKey, CDataStream ssValue), std::string& newFilename)
|
bool BerkeleyBatch::Recover(const fs::path& file_path, void *callbackDataIn, bool (*recoverKVcallback)(void* callbackData, CDataStream ssKey, CDataStream ssValue), std::string& newFilename)
|
||||||
{
|
{
|
||||||
std::string filename;
|
std::string filename;
|
||||||
BerkeleyEnvironment* env = GetWalletEnv(file_path, filename);
|
std::shared_ptr<BerkeleyEnvironment> env = GetWalletEnv(file_path, filename);
|
||||||
|
|
||||||
// Recovery procedure:
|
// Recovery procedure:
|
||||||
// move wallet file to walletfilename.timestamp.bak
|
// move wallet file to walletfilename.timestamp.bak
|
||||||
@ -335,7 +346,7 @@ bool BerkeleyBatch::Recover(const fs::path& file_path, void *callbackDataIn, boo
|
|||||||
bool BerkeleyBatch::VerifyEnvironment(const fs::path& file_path, std::string& errorStr)
|
bool BerkeleyBatch::VerifyEnvironment(const fs::path& file_path, std::string& errorStr)
|
||||||
{
|
{
|
||||||
std::string walletFile;
|
std::string walletFile;
|
||||||
BerkeleyEnvironment* env = GetWalletEnv(file_path, walletFile);
|
std::shared_ptr<BerkeleyEnvironment> env = GetWalletEnv(file_path, walletFile);
|
||||||
fs::path walletDir = env->Directory();
|
fs::path walletDir = env->Directory();
|
||||||
|
|
||||||
LogPrintf("Using BerkeleyDB version %s\n", BerkeleyDatabaseVersion());
|
LogPrintf("Using BerkeleyDB version %s\n", BerkeleyDatabaseVersion());
|
||||||
@ -352,7 +363,7 @@ bool BerkeleyBatch::VerifyEnvironment(const fs::path& file_path, std::string& er
|
|||||||
bool BerkeleyBatch::VerifyDatabaseFile(const fs::path& file_path, std::string& warningStr, std::string& errorStr, BerkeleyEnvironment::recoverFunc_type recoverFunc)
|
bool BerkeleyBatch::VerifyDatabaseFile(const fs::path& file_path, std::string& warningStr, std::string& errorStr, BerkeleyEnvironment::recoverFunc_type recoverFunc)
|
||||||
{
|
{
|
||||||
std::string walletFile;
|
std::string walletFile;
|
||||||
BerkeleyEnvironment* env = GetWalletEnv(file_path, walletFile);
|
std::shared_ptr<BerkeleyEnvironment> env = GetWalletEnv(file_path, walletFile);
|
||||||
fs::path walletDir = env->Directory();
|
fs::path walletDir = env->Directory();
|
||||||
|
|
||||||
if (fs::exists(walletDir / walletFile))
|
if (fs::exists(walletDir / walletFile))
|
||||||
@ -456,7 +467,7 @@ BerkeleyBatch::BerkeleyBatch(BerkeleyDatabase& database, const char* pszMode, bo
|
|||||||
{
|
{
|
||||||
fReadOnly = (!strchr(pszMode, '+') && !strchr(pszMode, 'w'));
|
fReadOnly = (!strchr(pszMode, '+') && !strchr(pszMode, 'w'));
|
||||||
fFlushOnClose = fFlushOnCloseIn;
|
fFlushOnClose = fFlushOnCloseIn;
|
||||||
env = database.env;
|
env = database.env.get();
|
||||||
if (database.IsDummy()) {
|
if (database.IsDummy()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -513,7 +524,7 @@ BerkeleyBatch::BerkeleyBatch(BerkeleyDatabase& database, const char* pszMode, bo
|
|||||||
// versions of BDB have an set_lk_exclusive method for this
|
// versions of BDB have an set_lk_exclusive method for this
|
||||||
// purpose, but the older version we use does not.)
|
// purpose, but the older version we use does not.)
|
||||||
for (auto& env : g_dbenvs) {
|
for (auto& env : g_dbenvs) {
|
||||||
CheckUniqueFileid(env.second, strFilename, *pdb_temp, this->env->m_fileids[strFilename]);
|
CheckUniqueFileid(*env.second.lock().get(), strFilename, *pdb_temp, this->env->m_fileids[strFilename]);
|
||||||
}
|
}
|
||||||
|
|
||||||
pdb = pdb_temp.release();
|
pdb = pdb_temp.release();
|
||||||
@ -614,7 +625,7 @@ bool BerkeleyBatch::Rewrite(BerkeleyDatabase& database, const char* pszSkip)
|
|||||||
if (database.IsDummy()) {
|
if (database.IsDummy()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
BerkeleyEnvironment *env = database.env;
|
BerkeleyEnvironment *env = database.env.get();
|
||||||
const std::string& strFile = database.strFile;
|
const std::string& strFile = database.strFile;
|
||||||
while (true) {
|
while (true) {
|
||||||
{
|
{
|
||||||
@ -745,7 +756,7 @@ bool BerkeleyBatch::PeriodicFlush(BerkeleyDatabase& database)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
bool ret = false;
|
bool ret = false;
|
||||||
BerkeleyEnvironment *env = database.env;
|
BerkeleyEnvironment *env = database.env.get();
|
||||||
const std::string& strFile = database.strFile;
|
const std::string& strFile = database.strFile;
|
||||||
TRY_LOCK(cs_db, lockDb);
|
TRY_LOCK(cs_db, lockDb);
|
||||||
if (lockDb)
|
if (lockDb)
|
||||||
|
@ -57,10 +57,10 @@ public:
|
|||||||
std::condition_variable_any m_db_in_use;
|
std::condition_variable_any m_db_in_use;
|
||||||
|
|
||||||
BerkeleyEnvironment(const fs::path& env_directory);
|
BerkeleyEnvironment(const fs::path& env_directory);
|
||||||
|
BerkeleyEnvironment();
|
||||||
~BerkeleyEnvironment();
|
~BerkeleyEnvironment();
|
||||||
void Reset();
|
void Reset();
|
||||||
|
|
||||||
void MakeMock();
|
|
||||||
bool IsMock() const { return fMockDb; }
|
bool IsMock() const { return fMockDb; }
|
||||||
bool IsInitialized() const { return fDbEnvInit; }
|
bool IsInitialized() const { return fDbEnvInit; }
|
||||||
bool IsDatabaseLoaded(const std::string& db_filename) const { return m_databases.find(db_filename) != m_databases.end(); }
|
bool IsDatabaseLoaded(const std::string& db_filename) const { return m_databases.find(db_filename) != m_databases.end(); }
|
||||||
@ -109,7 +109,7 @@ public:
|
|||||||
bool IsWalletLoaded(const fs::path& wallet_path);
|
bool IsWalletLoaded(const fs::path& wallet_path);
|
||||||
|
|
||||||
/** Get BerkeleyEnvironment and database filename given a wallet path. */
|
/** Get BerkeleyEnvironment and database filename given a wallet path. */
|
||||||
BerkeleyEnvironment* GetWalletEnv(const fs::path& wallet_path, std::string& database_filename);
|
std::shared_ptr<BerkeleyEnvironment> GetWalletEnv(const fs::path& wallet_path, std::string& database_filename);
|
||||||
|
|
||||||
/** An instance of this class represents one database.
|
/** An instance of this class represents one database.
|
||||||
* For BerkeleyDB this is just a (env, strFile) tuple.
|
* For BerkeleyDB this is just a (env, strFile) tuple.
|
||||||
@ -124,17 +124,11 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Create DB handle to real database */
|
/** Create DB handle to real database */
|
||||||
BerkeleyDatabase(const fs::path& wallet_path, bool mock = false) :
|
BerkeleyDatabase(std::shared_ptr<BerkeleyEnvironment> env, std::string filename) :
|
||||||
nUpdateCounter(0), nLastSeen(0), nLastFlushed(0), nLastWalletUpdate(0)
|
nUpdateCounter(0), nLastSeen(0), nLastFlushed(0), nLastWalletUpdate(0), env(std::move(env)), strFile(std::move(filename))
|
||||||
{
|
{
|
||||||
env = GetWalletEnv(wallet_path, strFile);
|
auto inserted = this->env->m_databases.emplace(strFile, std::ref(*this));
|
||||||
auto inserted = env->m_databases.emplace(strFile, std::ref(*this));
|
|
||||||
assert(inserted.second);
|
assert(inserted.second);
|
||||||
if (mock) {
|
|
||||||
env->Close();
|
|
||||||
env->Reset();
|
|
||||||
env->MakeMock();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
~BerkeleyDatabase() {
|
~BerkeleyDatabase() {
|
||||||
@ -147,7 +141,8 @@ public:
|
|||||||
/** Return object for accessing database at specified path. */
|
/** Return object for accessing database at specified path. */
|
||||||
static std::unique_ptr<BerkeleyDatabase> Create(const fs::path& path)
|
static std::unique_ptr<BerkeleyDatabase> Create(const fs::path& path)
|
||||||
{
|
{
|
||||||
return MakeUnique<BerkeleyDatabase>(path);
|
std::string filename;
|
||||||
|
return MakeUnique<BerkeleyDatabase>(GetWalletEnv(path, filename), std::move(filename));
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Return object for accessing dummy database with no read/write capabilities. */
|
/** Return object for accessing dummy database with no read/write capabilities. */
|
||||||
@ -159,7 +154,7 @@ public:
|
|||||||
/** Return object for accessing temporary in-memory database. */
|
/** Return object for accessing temporary in-memory database. */
|
||||||
static std::unique_ptr<BerkeleyDatabase> CreateMock()
|
static std::unique_ptr<BerkeleyDatabase> CreateMock()
|
||||||
{
|
{
|
||||||
return MakeUnique<BerkeleyDatabase>("", true /* mock */);
|
return MakeUnique<BerkeleyDatabase>(std::make_shared<BerkeleyEnvironment>(), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Rewrite the entire database on disk, with the exception of key pszSkip if non-zero
|
/** Rewrite the entire database on disk, with the exception of key pszSkip if non-zero
|
||||||
@ -183,12 +178,21 @@ public:
|
|||||||
unsigned int nLastFlushed;
|
unsigned int nLastFlushed;
|
||||||
int64_t nLastWalletUpdate;
|
int64_t nLastWalletUpdate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pointer to shared database environment.
|
||||||
|
*
|
||||||
|
* Normally there is only one BerkeleyDatabase object per
|
||||||
|
* BerkeleyEnvivonment, but in the special, backwards compatible case where
|
||||||
|
* multiple wallet BDB data files are loaded from the same directory, this
|
||||||
|
* will point to a shared instance that gets freed when the last data file
|
||||||
|
* is closed.
|
||||||
|
*/
|
||||||
|
std::shared_ptr<BerkeleyEnvironment> env;
|
||||||
|
|
||||||
/** Database pointer. This is initialized lazily and reset during flushes, so it can be null. */
|
/** Database pointer. This is initialized lazily and reset during flushes, so it can be null. */
|
||||||
std::unique_ptr<Db> m_db;
|
std::unique_ptr<Db> m_db;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/** BerkeleyDB specific */
|
|
||||||
BerkeleyEnvironment *env;
|
|
||||||
std::string strFile;
|
std::string strFile;
|
||||||
|
|
||||||
/** Return whether this database handle is a dummy for testing.
|
/** Return whether this database handle is a dummy for testing.
|
||||||
|
72
src/wallet/test/db_tests.cpp
Normal file
72
src/wallet/test/db_tests.cpp
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
// Copyright (c) 2018 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
#include <boost/test/unit_test.hpp>
|
||||||
|
|
||||||
|
#include <fs.h>
|
||||||
|
#include <test/test_dash.h>
|
||||||
|
#include <wallet/db.h>
|
||||||
|
|
||||||
|
|
||||||
|
BOOST_FIXTURE_TEST_SUITE(db_tests, BasicTestingSetup)
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(getwalletenv_file)
|
||||||
|
{
|
||||||
|
std::string test_name = "test_name.dat";
|
||||||
|
fs::path datadir = SetDataDir("tempdir");
|
||||||
|
fs::path file_path = datadir / test_name;
|
||||||
|
std::ofstream f(file_path.BOOST_FILESYSTEM_C_STR);
|
||||||
|
f.close();
|
||||||
|
|
||||||
|
std::string filename;
|
||||||
|
std::shared_ptr<BerkeleyEnvironment> env = GetWalletEnv(file_path, filename);
|
||||||
|
BOOST_CHECK(filename == test_name);
|
||||||
|
BOOST_CHECK(env->Directory() == datadir);
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(getwalletenv_directory)
|
||||||
|
{
|
||||||
|
std::string expected_name = "wallet.dat";
|
||||||
|
fs::path datadir = SetDataDir("tempdir");
|
||||||
|
|
||||||
|
std::string filename;
|
||||||
|
std::shared_ptr<BerkeleyEnvironment> env = GetWalletEnv(datadir, filename);
|
||||||
|
BOOST_CHECK(filename == expected_name);
|
||||||
|
BOOST_CHECK(env->Directory() == datadir);
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(getwalletenv_g_dbenvs_multiple)
|
||||||
|
{
|
||||||
|
fs::path datadir = SetDataDir("tempdir");
|
||||||
|
fs::path datadir_2 = SetDataDir("tempdir_2");
|
||||||
|
std::string filename;
|
||||||
|
|
||||||
|
std::shared_ptr<BerkeleyEnvironment> env_1 = GetWalletEnv(datadir, filename);
|
||||||
|
std::shared_ptr<BerkeleyEnvironment> env_2 = GetWalletEnv(datadir, filename);
|
||||||
|
std::shared_ptr<BerkeleyEnvironment> env_3 = GetWalletEnv(datadir_2, filename);
|
||||||
|
|
||||||
|
BOOST_CHECK(env_1 == env_2);
|
||||||
|
BOOST_CHECK(env_2 != env_3);
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(getwalletenv_g_dbenvs_free_instance)
|
||||||
|
{
|
||||||
|
fs::path datadir = SetDataDir("tempdir");
|
||||||
|
fs::path datadir_2 = SetDataDir("tempdir_2");
|
||||||
|
std::string filename;
|
||||||
|
|
||||||
|
std::shared_ptr <BerkeleyEnvironment> env_1_a = GetWalletEnv(datadir, filename);
|
||||||
|
std::shared_ptr <BerkeleyEnvironment> env_2_a = GetWalletEnv(datadir_2, filename);
|
||||||
|
env_1_a.reset();
|
||||||
|
|
||||||
|
std::shared_ptr<BerkeleyEnvironment> env_1_b = GetWalletEnv(datadir, filename);
|
||||||
|
std::shared_ptr<BerkeleyEnvironment> env_2_b = GetWalletEnv(datadir_2, filename);
|
||||||
|
|
||||||
|
BOOST_CHECK(env_1_a != env_1_b);
|
||||||
|
BOOST_CHECK(env_2_a == env_2_b);
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_SUITE_END()
|
@ -4937,6 +4937,10 @@ bool CWallet::Verify(const WalletLocation& location, bool salvage_wallet, std::s
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Keep same database environment instance across Verify/Recover calls below.
|
||||||
|
// Let tempWallet hold the pointer to the corresponding wallet database.
|
||||||
|
std::unique_ptr<CWallet> tempWallet = MakeUnique<CWallet>(location, WalletDatabase::Create(wallet_path));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (!WalletBatch::VerifyEnvironment(wallet_path, error_string)) {
|
if (!WalletBatch::VerifyEnvironment(wallet_path, error_string)) {
|
||||||
return false;
|
return false;
|
||||||
@ -4946,7 +4950,6 @@ bool CWallet::Verify(const WalletLocation& location, bool salvage_wallet, std::s
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<CWallet> tempWallet = MakeUnique<CWallet>(location, WalletDatabase::Create(wallet_path));
|
|
||||||
if (!tempWallet->AutoBackupWallet(wallet_path, warning_string, error_string) && !error_string.empty()) {
|
if (!tempWallet->AutoBackupWallet(wallet_path, warning_string, error_string) && !error_string.empty()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -5388,7 +5391,7 @@ bool CWallet::AutoBackupWallet(const fs::path& wallet_path, std::string& strBack
|
|||||||
} else {
|
} else {
|
||||||
// ... strWalletName file
|
// ... strWalletName file
|
||||||
std::string strSourceFile;
|
std::string strSourceFile;
|
||||||
BerkeleyEnvironment* env = GetWalletEnv(wallet_path, strSourceFile);
|
std::shared_ptr<BerkeleyEnvironment> env = GetWalletEnv(wallet_path, strSourceFile);
|
||||||
fs::path sourceFile = env->Directory() / strSourceFile;
|
fs::path sourceFile = env->Directory() / strSourceFile;
|
||||||
fs::path backupFile = backupsDir / (strWalletName + dateTimeStr);
|
fs::path backupFile = backupsDir / (strWalletName + dateTimeStr);
|
||||||
sourceFile.make_preferred();
|
sourceFile.make_preferred();
|
||||||
|
Loading…
Reference in New Issue
Block a user