refactor: Enable clang-tidy readability-identifier-naming check (#6571)

This commit is contained in:
Alex Kremer
2026-05-03 11:31:53 +01:00
committed by GitHub
parent 182d844996
commit 8995564ed6
1498 changed files with 58858 additions and 58914 deletions

View File

@@ -10,29 +10,29 @@
/** DID operations. */
namespace xrpl::test::jtx::did {
Json::Value
json::Value
set(jtx::Account const& account)
{
Json::Value jv;
json::Value jv;
jv[jss::TransactionType] = jss::DIDSet;
jv[jss::Account] = to_string(account.id());
return jv;
}
Json::Value
json::Value
setValid(jtx::Account const& account)
{
Json::Value jv;
json::Value jv;
jv[jss::TransactionType] = jss::DIDSet;
jv[jss::Account] = to_string(account.id());
jv[sfURI.jsonName] = strHex(std::string{"uri"});
return jv;
}
Json::Value
json::Value
del(jtx::Account const& account)
{
Json::Value jv;
json::Value jv;
jv[jss::TransactionType] = jss::DIDDelete;
jv[jss::Account] = to_string(account.id());
return jv;