The function setMintFee in CashManager.sol is used by the admin to change the mint fee.
By the dev comment above the function, the maximum fee that can be set is 10_000 bps, or 100%.
As the value of the BPSDENOMINATOR is set as `10000and can't be changed.<br> The if statement in the function is wrong as it doesn't allow to be set as the maximum fee10000bps.<br>if (mintFee >= BPSDENOMINATOR)should be changed toif (mintFee > BPS_DENOMINATOR)`.
