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

@@ -17,7 +17,7 @@
namespace xrpl::test {
class ScaleFreeSim_test : public beast::unit_test::suite
class ScaleFreeSim_test : public beast::unit_test::Suite
{
void
run() override
@@ -28,14 +28,14 @@ class ScaleFreeSim_test : public beast::unit_test::suite
// Generate a quasi-random scale free network and simulate consensus
// as we vary transaction submission rates
int const N = 100; // Peers
int const n = 100; // Peers
int const numUNLs = 15; // UNL lists
int const minUNLSize = N / 4, maxUNLSize = N / 2;
int const minUNLSize = n / 4, maxUNLSize = n / 2;
ConsensusParms const parms{};
Sim sim;
PeerGroup network = sim.createGroup(N);
PeerGroup network = sim.createGroup(n);
// generate trust ranks
std::vector<double> const ranks =