Use fs::exists from common tools

This commit is contained in:
Sean Darcy 2021-04-15 15:47:45 +10:00
parent d05f514c1f
commit cb8a7d4a43
1 changed files with 1 additions and 1 deletions

View File

@ -659,7 +659,7 @@ namespace cryptonote
}
auto ons_db_file_path = folder / "ons.db";
if(std::filesystem::exists(folder / "lns.db"))
if(fs::exists(folder / "lns.db"))
ons_db_file_path = folder / "lns.db";