In bootloader, function getGasPrice checks the correctness of the fee parameters, namely:
But it does not check that:
The operator may charge users requesting priority operations more than what they initially allowed:
 so that we have baseFee less than or equal to maxPriorityFeePerGas less than or equal to maxFeePerGas.
 Right now, maxPriorityFeePerGas is hard-coded to 0.
Noted as low instead of the Medium, but when you update that make sure that the invariants above hold, making the operator unable to charge users more than what they specified.
