Submitted by gpersoon, also found by 0xRajeev
Both the functions setLiqParamsToken and setLiqParamsDefault have a check to make sure that
_liqFeeCaller + _liqFeeSystem <= MAX_LIQ_FEES
However the constructor of Controller sets the same parameters and doesnt have this check.
It seems logical to also do the check in the controller, otherwise the parameters could be set outside of the wanted range.
Controller.sol #L49
Recommend adding something like the following in the constructor of Controller
- talegift (Wild Credit) confirmed
