style: More clang-tidy identifier renaming (#7290)

This commit is contained in:
Alex Kremer
2026-05-20 22:31:15 +01:00
committed by GitHub
parent 8c0080020f
commit a830ab10ef
160 changed files with 1726 additions and 1746 deletions

View File

@@ -1062,7 +1062,7 @@ struct LedgerReplayer_test : public beast::unit_test::Suite
testcase("config test");
{
Config const c;
BEAST_EXPECT(c.LEDGER_REPLAY == false);
BEAST_EXPECT(c.ledgerReplay == false);
}
{
@@ -1072,7 +1072,7 @@ struct LedgerReplayer_test : public beast::unit_test::Suite
1
)xrpldConfig");
c.loadFromString(toLoad);
BEAST_EXPECT(c.LEDGER_REPLAY == true);
BEAST_EXPECT(c.ledgerReplay == true);
}
{
@@ -1082,7 +1082,7 @@ struct LedgerReplayer_test : public beast::unit_test::Suite
0
)xrpldConfig");
c.loadFromString(toLoad);
BEAST_EXPECT(c.LEDGER_REPLAY == false);
BEAST_EXPECT(c.ledgerReplay == false);
}
}
@@ -1101,7 +1101,7 @@ struct LedgerReplayer_test : public beast::unit_test::Suite
beast::IP::Address const addr = boost::asio::ip::make_address("172.1.1.100");
jtx::Env serverEnv(*this);
serverEnv.app().config().LEDGER_REPLAY = server;
serverEnv.app().config().ledgerReplay = server;
auto httpResp = xrpl::makeResponse(
true, httpRequest, addr, addr, uint256{1}, 1, {1, 0}, serverEnv.app());
auto const clientResult = peerFeatureEnabled(httpResp, kFeatureLedgerReplay, client);