pub trait GasMutState: GasState { // Required method fn record_gas(&mut self, gas: U256) -> Result<(), ExitError>; }
Mutable GasState. This simply allows recording an arbitrary gas.
Record an arbitrary gas into the current gasometer.