The Utils.getInterestOwed function computes the _interestPayment as:
However, calcShare caps timeElpased to _year and therefore the owed interest does not grow after a year has elapsed.
The impact is probably small because the only call so far computes the elapsed time as block.timestamp - mapCollateralAsset_NextEra[collateralAsset][debtAsset]; which most likely will never go beyond a year.
Its still recommended to fix the logic bug in case more functions will be added that use the broken function.
Recommend using a different function than calcShare that does not cap.
strictly-scarce (vader) confirmed:
