Skip to content

Commit

Permalink
fixup! wallet, interfaces: Include database format in listWalletDir
Browse files Browse the repository at this point in the history
  • Loading branch information
achow101 committed Aug 13, 2024
1 parent 9a0d8c0 commit be93d63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/db.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ std::vector<std::pair<fs::path, std::string>> ListDatabases(const fs::path& wall
// as a wallet.
if (IsBDBFile(it->path())) {
paths.emplace_back(fs::path(), "bdb");
} else if (IsSQLiteFile(SQit->path())) {
} else if (IsSQLiteFile(it->path())) {
paths.emplace_back(fs::path(), "sqlite");
}
} else if (IsBDBFile(it->path())) {
Expand Down

0 comments on commit be93d63

Please sign in to comment.