Macro state_gas
macro_rules! state_gas {
($interpreter:expr, $gas:expr) => { ... };
($interpreter:expr, $gas:expr, $ret:expr) => { ... };
}Expand description
Records a state gas cost (EIP-8037) and fails the instruction if it would exceed the available gas.
State gas only deducts from remaining (not regular_gas_remaining).