clang-format

This commit is contained in:
Denis Angell
2023-01-24 17:36:15 -05:00
parent 8b6efee476
commit 8eb4589e09
3 changed files with 4 additions and 4 deletions

View File

@@ -926,7 +926,7 @@ trustTransferLockedBalance(
if (lXferRate != parityRate)
{
// compute transfer fee, if any
auto const xferFee = amount.value() -
auto const xferFee = amount.value() -
divideRound(amount, lXferRate, amount.issue(), true);
// compute balance to transfer
dstAmt = amount.value() - xferFee;

View File

@@ -204,8 +204,8 @@ struct Escrow_test : public beast::unit_test::suite
static Rate
escrowRate(
jtx::Env const& env,
jtx::Account const& account,
jtx::Env const& env,
jtx::Account const& account,
uint32_t const& seq)
{
auto const sle = env.le(keylet::escrow(account.id(), seq));

View File

@@ -5001,7 +5001,7 @@ struct PayChan_test : public beast::unit_test::suite
env.close();
// bob can claim
auto const sig =
auto const sig =
signClaimICAuth(alice.pk(), alice.sk(), chan, authAmt);
env(claim(bob, chan, reqBal, authAmt, Slice(sig), alice.pk()));
env.close();