aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2020-06-15 14:29:29 -0400
committerAndrew Chow <achow101-github@achow101.com>2020-06-15 20:41:05 -0400
commit61c16339da4e80b1320a6296df6d96cd7a84bb4e (patch)
tree0c2dd92af7fe30748a01f040d534853aa1464c1e /src/qt
parent8f033642a8c6874184e297b97b951b9bd12ffd75 (diff)
downloadbitcoin-61c16339da4e80b1320a6296df6d96cd7a84bb4e.tar.xz
walletdb: Move BDB specific things into bdb.{cpp/h}
Leave wallet/db.{cpp/h} for generic WalletDatabase stuff. The BDB specific stuff goes into bdb.{cpp/h}
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/rpcconsole.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index 0f89d4e6fe..dafd517ca8 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -24,6 +24,7 @@
#include <univalue.h>
#ifdef ENABLE_WALLET
+#include <wallet/bdb.h>
#include <wallet/db.h>
#include <wallet/wallet.h>
#endif