aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/db.h
diff options
context:
space:
mode:
authorChun Kuan Lee <ken2812221@gmail.com>2018-11-08 11:41:56 +0800
committerJoão Barbosa <joao.paulo.barbosa@gmail.com>2019-03-11 21:54:44 +0000
commit0a9af2d4cb093d254a36d094b8d8ed7603fc9404 (patch)
treeb03cb19c110d025b88f863dcf1b59480d788990b /src/wallet/db.h
parent7751ea37b65cae2cff766d09b2c95770aa7d71d8 (diff)
wallet: Create IsDatabaseLoaded function
Github-Pull: #14552 Rebased-From: 5912031
Diffstat (limited to 'src/wallet/db.h')
-rw-r--r--src/wallet/db.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/db.h b/src/wallet/db.h
index dd549bc463..6af37c12cd 100644
--- a/src/wallet/db.h
+++ b/src/wallet/db.h
@@ -56,6 +56,7 @@ public:
void MakeMock();
bool IsMock() const { return fMockDb; }
bool IsInitialized() const { return fDbEnvInit; }
+ bool IsDatabaseLoaded(const std::string& db_filename) const { return m_databases.find(db_filename) != m_databases.end(); }
fs::path Directory() const { return strPath; }
/**