diff options
| author | Andrew Chow <[email protected]> | 2020-06-19 20:55:07 -0400 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2020-07-14 11:07:16 -0400 |
| commit | 2179dbcbcd0b9bef7ad9c907b85294b9a1bccf0f (patch) | |
| tree | 3d5c7b7ca6781b0a3d1e3e257e7006435c4a71ec /src | |
| parent | walletdb: Introduce AddRef and RemoveRef functions (diff) | |
| download | discoin-2179dbcbcd0b9bef7ad9c907b85294b9a1bccf0f.tar.xz discoin-2179dbcbcd0b9bef7ad9c907b85294b9a1bccf0f.zip | |
walletdb: Add BerkeleyDatabase::Open dummy function
Adds an Open function for the class abstraction that does nothing for
now.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/bdb.cpp | 5 | ||||
| -rw-r--r-- | src/wallet/bdb.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/wallet/bdb.cpp b/src/wallet/bdb.cpp index 8ca4991f0..06ee9ae5e 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) diff --git a/src/wallet/bdb.h b/src/wallet/bdb.h index 9c4d6afa8..bbaeefa41 100644 --- a/src/wallet/bdb.h +++ b/src/wallet/bdb.h @@ -117,6 +117,10 @@ public: ~BerkeleyDatabase(); + /** Open the database if it is not already opened. + * Dummy function, doesn't do anything right now, but is needed for class abstraction */ + void Open(const char* mode); + /** Rewrite the entire database on disk, with the exception of key pszSkip if non-zero */ bool Rewrite(const char* pszSkip=nullptr); |