aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/test
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/wallet/test
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/wallet/test')
-rw-r--r--src/wallet/test/db_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/test/db_tests.cpp b/src/wallet/test/db_tests.cpp
index f4a4c9fa7c..8f0083cd2e 100644
--- a/src/wallet/test/db_tests.cpp
+++ b/src/wallet/test/db_tests.cpp
@@ -8,7 +8,7 @@
#include <fs.h>
#include <test/util/setup_common.h>
-#include <wallet/db.h>
+#include <wallet/bdb.h>
BOOST_FIXTURE_TEST_SUITE(db_tests, BasicTestingSetup)