Constant MAX_ACCOUNT_UPDATES

Source
const MAX_ACCOUNT_UPDATES: usize = 2;
Expand description

keep max_account_updates small, so zkApp integration tests don’t need lots of block producers because the other zkapp_command are split into a permissions-setter and another account_update, the actual number of other zkapp_command is twice this value, plus one, for the “balancing” account_update when we have separate transaction accounts in integration tests this number can be increased

https://github.com/MinaProtocol/mina/blob/3753a8593cc1577bcf4da16620daf9946d88e8e5/src/lib/mina_generators/zkapp_command_generators.ml#L1111