pub fn step_op<S, OA>(
access: Access,
op: Op,
vm: &mut Vm,
state: &S,
op_access: OA,
op_gas_cost: &impl OpGasCost,
gas_limit: GasLimit,
) -> Result<Option<ProgramControlFlow>, OpError<<S as StateReads>::Error>>where
S: StateReads,
OA: OpAccess<Op = Op>,
<OA as OpAccess>::Error: Into<OpError<<S as StateReads>::Error>>,Expand description
Step forward execution by the given synchronous operation. This includes the synchronous state read operation.