Submitted by shenwilly
LiquidityPool.sol#L694
Depositors wont be able to transfer or redeem funds temporarily.
The problem is caused by the implementation of LiquidityPool.getNewCurrentFees:
The last line requires the current feeRatio to be higher than minFeePercentage or the function will revert. When this condition is broken, some critical functions such as transferring tokens and redeeming will be unusable. Affected users need to wait until enough time has elapsed and getNewCurrentFees returns minFeePercentage on L691.
This could happen if governance changes the MinWithdrawalFee to be higher than a users feeRatio.
Add a new condition in getNewCurrentFees L690 to account for this case:
chase-manning (Backd) confirmed and resolved
