Skip to content

Commit be93d63

Browse files
committed
fixup! wallet, interfaces: Include database format in listWalletDir
1 parent 9a0d8c0 commit be93d63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/db.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ std::vector<std::pair<fs::path, std::string>> ListDatabases(const fs::path& wall
5252
// as a wallet.
5353
if (IsBDBFile(it->path())) {
5454
paths.emplace_back(fs::path(), "bdb");
55-
} else if (IsSQLiteFile(SQit->path())) {
55+
} else if (IsSQLiteFile(it->path())) {
5656
paths.emplace_back(fs::path(), "sqlite");
5757
}
5858
} else if (IsBDBFile(it->path())) {

0 commit comments

Comments
 (0)