aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/sqlite.h
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2023-07-06 18:11:00 +0000
committerCory Fields <cory-nospam-@coryfields.com>2023-07-06 19:53:44 +0000
commitbea9fc2600635020fd28ec7a6613c92a6f349a86 (patch)
tree4bbf252a7080ac3254ed77a4e821c69edca87663 /src/wallet/sqlite.h
parentc325f0fbae2d6472a78be733d499783f8b69d6b8 (diff)
downloadbitcoin-bea9fc2600635020fd28ec7a6613c92a6f349a86.tar.xz
wallet: sqlite: force sqlite3.h to be included by the cpp files
This way sqlite usage is explicit.
Diffstat (limited to 'src/wallet/sqlite.h')
-rw-r--r--src/wallet/sqlite.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wallet/sqlite.h b/src/wallet/sqlite.h
index 0378bbb8d6..f1ce0567e1 100644
--- a/src/wallet/sqlite.h
+++ b/src/wallet/sqlite.h
@@ -8,10 +8,11 @@
#include <sync.h>
#include <wallet/db.h>
-#include <sqlite3.h>
-
struct bilingual_str;
+struct sqlite3_stmt;
+struct sqlite3;
+
namespace wallet {
class SQLiteDatabase;