diff --git a/src/Morpho.sol b/src/Morpho.sol index f755904b6..b1d344957 100644 --- a/src/Morpho.sol +++ b/src/Morpho.sol @@ -469,7 +469,8 @@ contract Morpho is IMorphoStaticTyping { /// @dev Accrues interest for the given market `marketParams`. /// @dev Assumes that the inputs `marketParams` and `id` match. function _accrueInterest(MarketParams memory marketParams, Id id) internal { - uint256 elapsed = block.timestamp - market[id].lastUpdate; + /// BinaryOpMutation(`-` |==> `+`) of: `uint256 elapsed = block.timestamp - market[id].lastUpdate;` + uint256 elapsed = block.timestamp + market[id].lastUpdate; if (elapsed == 0) return;