removes wrong coments

This commit is contained in:
Vito
2025-11-19 11:43:25 +01:00
parent 54580a167a
commit 769e14b812

View File

@@ -93,9 +93,11 @@ struct LoanPaymentParts
*/
struct LoanProperties
{
// The amount the borrower must pay for each regular payment period.
// Calculated using the standard amortization formula
// based on principal, interest rate, and number of payments.
// The unrounded amount to be paid at each regular payment period.
// Calculated using the standard amortization formula based on principal,
// interest rate, and number of payments.
// The actual amount paid in the LoanPay transaction must be rounded up to
// the precision of the asset.
Number periodicPayment;
// The total amount the borrower will pay over the life of the loan.
@@ -280,7 +282,6 @@ struct PaymentComponents
* - Late payment fees that go directly to the Broker
* - Late payment penalty interest that goes directly to the Vault
* - Service fees
* - Origination fees (on first payment)
*
* The key distinction is that tracked amounts reduce the Loan object's state
* (sfTotalValueOutstanding, sfPrincipalOutstanding,