diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-06-19 20:55:07 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-07-14 11:07:16 -0400 |
commit | 2179dbcbcd0b9bef7ad9c907b85294b9a1bccf0f (patch) | |
tree | 3d5c7b7ca6781b0a3d1e3e257e7006435c4a71ec /src/wallet/bdb.cpp | |
parent | 71d28e7cdca1c8553531bb3a4725d7916363ec5c (diff) |
walletdb: Add BerkeleyDatabase::Open dummy function
Adds an Open function for the class abstraction that does nothing for
now.
Diffstat (limited to 'src/wallet/bdb.cpp')
-rw-r--r-- | src/wallet/bdb.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet/bdb.cpp b/src/wallet/bdb.cpp index 8ca4991f04..06ee9ae5ee 100644 --- a/src/wallet/bdb.cpp +++ b/src/wallet/bdb.cpp @@ -413,6 +413,11 @@ BerkeleyBatch::BerkeleyBatch(BerkeleyDatabase& database, const char* pszMode, bo } } +void BerkeleyDatabase::Open(const char* mode) +{ + throw std::logic_error("BerkeleyDatabase does not implement Open. This function should not be called."); +} + void BerkeleyBatch::Flush() { if (activeTxn) |