Some people keep thinking that MAX_BLOCK_BASE_SIZE is a separate size limit from the weight limit when it fact it is superfluous, and used in early tests before the witness data has been validated or just to compute worst case sizes. The size checks that use it would not behave any differently consensus wise if they were eliminated completely.
Its correct value is not independently settable but is a function of the weight limit and weight formula.
This patch just eliminates it and uses the scale factor as required to compute the worse case constants. It’s an alternative to another PR that adds a long comment that seemingly was still not sufficient.