diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-06-15 14:29:29 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-06-15 20:41:05 -0400 |
commit | 61c16339da4e80b1320a6296df6d96cd7a84bb4e (patch) | |
tree | 0c2dd92af7fe30748a01f040d534853aa1464c1e /src/qt | |
parent | 8f033642a8c6874184e297b97b951b9bd12ffd75 (diff) |
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.cpp | 1 |
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 |