diff --git a/src/executor/stack/executor.rs b/src/executor/stack/executor.rs index 9220f3f9..2e7f7858 100644 --- a/src/executor/stack/executor.rs +++ b/src/executor/stack/executor.rs @@ -593,7 +593,7 @@ impl<'config, 'precompiles, S: StackState<'config>, P: PrecompileSet> Some(gas_limit), false, ) { - Capture::Exit((s, _, v)) => emit_exit!(s, v), + Capture::Exit((s, v)) => emit_exit!(s, v), Capture::Trap(rt) => { let mut cs: SmallVec<[TaggedRuntime<'_>; DEFAULT_CALL_STACK_CAPACITY]> = smallvec!(rt.0);