description |
---|
Submitted by (2) Lambda, also found by rbserver |
- When publishing a project, if the
lentAmount
for the community is non-zero, calculate the interest before updating the APR. - Project A is unpublished, the
lentAmount
is still 1,000,000 USD. - During one year, no calls to
repayLender
,reduceDebt
, orescrow
happens, i.e. the interest is never added and thelastTimestamp
not updated. - After one year, the project is published again in the same community. Because the FED raised interest rates, it is specified that the APR should be 5% from now on.
- Another $1,000,000 is lent to the project by calling
lendToProject
. Now,claimInterest
is called which calculates the interest of the last year for the first million. However, the function already uses the new APR of 5%, meaning the added interest is 50,000 USD instead of the correct 30,000 USD.
When publishing a project, if the lentAmount
for the community is non-zero, calculate the interest before updating the APR.