Skip to content

Commit f9438cc

Browse files
committed
fixes formatting
1 parent cf33c9d commit f9438cc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/xrpld/app/tx/detail/LoanSet.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,8 @@ LoanSet::doApply()
417417
JLOG(j_.warn())
418418
<< field.f->getName() << " (" << *value
419419
<< ") has too much precision. Total loan value is "
420-
<< properties.loanState.valueOutstanding << " with a scale of "
421-
<< properties.loanScale;
420+
<< properties.loanState.valueOutstanding
421+
<< " with a scale of " << properties.loanScale;
422422
return tecPRECISION_LOSS;
423423
}
424424
}
@@ -592,7 +592,8 @@ LoanSet::doApply()
592592
loan->at(sfPrincipalOutstanding) = principalRequested;
593593
loan->at(sfPeriodicPayment) = properties.periodicPayment;
594594
loan->at(sfTotalValueOutstanding) = properties.loanState.valueOutstanding;
595-
loan->at(sfManagementFeeOutstanding) = properties.loanState.managementFeeDue;
595+
loan->at(sfManagementFeeOutstanding) =
596+
properties.loanState.managementFeeDue;
596597
loan->at(sfPreviousPaymentDate) = 0;
597598
loan->at(sfNextPaymentDueDate) = startDate + paymentInterval;
598599
loan->at(sfPaymentRemaining) = paymentTotal;

0 commit comments

Comments
 (0)