aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2020-06-15 16:24:00 -0400
committerAndrew Chow <achow101-github@achow101.com>2020-07-14 11:07:16 -0400
commitd416ae560e46a4846a3fd5990b7d390d2ef30ec8 (patch)
tree3e859a51aba093050caabfc31ab873a27c16f39b /src/qt
parent2179dbcbcd0b9bef7ad9c907b85294b9a1bccf0f (diff)
downloadbitcoin-d416ae560e46a4846a3fd5990b7d390d2ef30ec8.tar.xz
walletdb: Introduce WalletDatabase abstract class
Make WalletDatabase actually an abstract class and not just a typedef for BerkeleyDatabase. Have BerkeleyDatabase inherit this class.
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/rpcconsole.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index 71094f7112..85b09d8bac 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -24,7 +24,6 @@
#include <univalue.h>
#ifdef ENABLE_WALLET
-#include <wallet/bdb.h>
#include <wallet/db.h>
#include <wallet/wallet.h>
#endif