From 36c7b887196723c62e74fc2900532413685b071d Mon Sep 17 00:00:00 2001 From: Evgeny Ukhanov Date: Wed, 16 Oct 2024 21:43:08 +0200 Subject: [PATCH] Fix create_fixed --- src/executor/stack/executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);