Constant massa_models::config::constants::MAX_ASYNC_GAS
source ยท pub const MAX_ASYNC_GAS: u64 = 1_000_000_000;Expand description
Base GAS budget for asynchronous messages execution on one slot.
This is not a strict per-slot cap: since MIP-0001, execute_slot tops this budget
up with the gas left unused by the block at that slot (and subtracts the gas booked
by deferred calls), so async execution can exceed this value on underfilled slots.
The bound that always holds is MAX_GAS_PER_BLOCK + MAX_ASYNC_GAS for the whole slot.