aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/db.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet/db.cpp')
-rw-r--r--src/wallet/db.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/db.cpp b/src/wallet/db.cpp
index 0ee39d2b5a..ea06767e9b 100644
--- a/src/wallet/db.cpp
+++ b/src/wallet/db.cpp
@@ -129,9 +129,9 @@ bool IsSQLiteFile(const fs::path& path)
file.close();
- // Check the magic, see https://sqlite.org/fileformat2.html
+ // Check the magic, see https://sqlite.org/fileformat.html
std::string magic_str(magic, 16);
- if (magic_str != std::string("SQLite format 3", 16)) {
+ if (magic_str != std::string{"SQLite format 3\000", 16}) {
return false;
}