Function step_op

Source
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,
) -> OpResult<Option<ProgramControlFlow>, S::Error>
where S: StateReads, OA: OpAccess<Op = Op>, OA::Error: Into<OpError<S::Error>>,
Expand description

Step forward execution by the given synchronous operation. This includes the synchronous state read operation.