refactor: Rename fs::path::u8string() to fs::path::utf8string()

This commit is contained in:
MarcoFalke
2023-12-14 13:23:32 +01:00
parent 856c88776f
commit 6666713041
10 changed files with 29 additions and 23 deletions

View File

@@ -243,7 +243,7 @@ static RPCHelpMan getrpcinfo()
UniValue result(UniValue::VOBJ);
result.pushKV("active_commands", active_commands);
const std::string path = LogInstance().m_file_path.u8string();
const std::string path = LogInstance().m_file_path.utf8string();
UniValue log_path(UniValue::VSTR, path);
result.pushKV("logpath", log_path);