walletdb: move IsWalletLoaded to walletdb.cpp

This commit is contained in:
Andrew Chow
2020-06-15 16:10:08 -04:00
parent f6fc5f3849
commit 25a655794a
4 changed files with 8 additions and 6 deletions

View File

@@ -1018,3 +1018,8 @@ bool WalletBatch::TxnAbort()
{
return m_batch.TxnAbort();
}
bool IsWalletLoaded(const fs::path& wallet_path)
{
return IsBDBWalletLoaded(wallet_path);
}