utilizationThresholdP of 10_000 will make OstiumPairInfos::_getUtilizationOpeningFee() divide by 0
Description
utilizationThresholdP should never be set to the max 10_000 or it will lead to division by 0 when calling OstiumPairInfos::_getUtilizationOpeningFee().
Recommendation
Add an equality restriction to utilizationThresholdP:
if ( ...
|| value.utilizationThresholdP >= MAX_USAGE_THRESHOLDP ... //@audit
note the = ) {
revert WrongParams();
}Status
Addressed in #4c774b3.