Skip to content

Commit ff67ad0

Browse files
rodiazetchfast
authored andcommitted
baseline: Fix code passing to notify_execution_start
1 parent c65efdf commit ff67ad0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/evmone/baseline.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ evmc_result execute(const VM& vm, ExecutionState& state, const CodeAnalysis& ana
327327
auto* tracer = vm.get_tracer();
328328
if (INTX_UNLIKELY(tracer != nullptr))
329329
{
330-
tracer->notify_execution_start(state.rev, *state.msg, code);
330+
tracer->notify_execution_start(state.rev, *state.msg, state.original_code);
331331
dispatch<true>(cost_table, state, code, tracer);
332332
}
333333
else

0 commit comments

Comments
 (0)