mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-23 07:10:53 +00:00
chore: Use clang-tidy v22 new features (#7427)
This commit is contained in:
@@ -3621,7 +3621,7 @@ public:
|
||||
auto const btc = gw["BTC"];
|
||||
|
||||
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();
|
||||
|
||||
@@ -3659,7 +3659,7 @@ public:
|
||||
auto const cny = gw["CNY"];
|
||||
|
||||
auto const fee = env.current()->fees().base;
|
||||
env.fund(reserve(env, 2) + drops(400000000000) + (fee), alice, bob);
|
||||
env.fund(reserve(env, 2) + drops(400000000000) + fee, alice, bob);
|
||||
env.fund(reserve(env, 2) + (fee * 4), gw);
|
||||
env.close();
|
||||
|
||||
@@ -3706,7 +3706,7 @@ public:
|
||||
auto const jpy = gw["JPY"];
|
||||
|
||||
auto const fee = env.current()->fees().base;
|
||||
env.fund(reserve(env, 2) + drops(400000000000) + (fee), alice, bob);
|
||||
env.fund(reserve(env, 2) + drops(400000000000) + fee, alice, bob);
|
||||
env.fund(reserve(env, 2) + (fee * 4), gw);
|
||||
env.close();
|
||||
|
||||
@@ -3759,7 +3759,7 @@ public:
|
||||
auto const jpy = gw2["JPY"];
|
||||
|
||||
auto const fee = env.current()->fees().base;
|
||||
env.fund(reserve(env, 2) + drops(400000000000) + (fee), alice, bob);
|
||||
env.fund(reserve(env, 2) + drops(400000000000) + fee, alice, bob);
|
||||
env.fund(reserve(env, 2) + (fee * 4), gw1, gw2);
|
||||
env.close();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user