From 7c79c27c785cce129f935161f89d01c0cc1a0dab Mon Sep 17 00:00:00 2001 From: Jeroen Offerijns Date: Tue, 24 Sep 2024 23:45:34 +0200 Subject: [PATCH] Remove comment --- src/operators/InterestDistributor.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/src/operators/InterestDistributor.sol b/src/operators/InterestDistributor.sol index e0ab0bb0..f673a3d1 100644 --- a/src/operators/InterestDistributor.sol +++ b/src/operators/InterestDistributor.sol @@ -95,7 +95,6 @@ contract InterestDistributor is IInterestDistributor { { if (outstandingShares == 0 || currentPrice <= prevPrice) return 0; - // If there was a principal redemption, the current balance is used since more than that cannot be redeemed. return MathLib.min( uint256(outstandingShares).mulDiv(currentPrice - prevPrice, currentPrice, MathLib.Rounding.Down), currentShares