chore: Use clang-tidy v22 new features (#7427)

This commit is contained in:
Ayaz Salikhov
2026-06-24 18:23:29 +01:00
committed by GitHub
parent 4fec58251b
commit eef8f4a4ff
90 changed files with 315 additions and 294 deletions

View File

@@ -3431,7 +3431,7 @@ public:
auto const gw = Account("gateway");
auto const fee = env.current()->fees().base;
env.fund(reserve(env, 2) + drops(9999640) + (fee), ann);
env.fund(reserve(env, 2) + drops(9999640) + fee, ann);
env.fund(reserve(env, 2) + (fee * 4), gw);
env.close();
@@ -3467,7 +3467,7 @@ public:
auto const bob = Account("bob");
auto const fee = env.current()->fees().base;
env.fund(reserve(env, 2) + drops(400'000'000'000) + (fee), alice, bob);
env.fund(reserve(env, 2) + drops(400'000'000'000) + fee, alice, bob);
env.fund(reserve(env, 2) + (fee * 4), gw);
env.close();