From 337a78230bd2cd119fe549188bdfb43f690e11cb Mon Sep 17 00:00:00 2001 From: rakita Date: Mon, 17 Jun 2024 13:41:39 +0200 Subject: [PATCH] fix(EOF): set CallOrCreate result in EOFCREATE --- crates/interpreter/src/instructions/contract.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/interpreter/src/instructions/contract.rs b/crates/interpreter/src/instructions/contract.rs index 8457fb2afc..174a50f8f1 100644 --- a/crates/interpreter/src/instructions/contract.rs +++ b/crates/interpreter/src/instructions/contract.rs @@ -67,6 +67,7 @@ pub fn eofcreate(interpreter: &mut Interpreter, _host: &mut H) gas!(interpreter, gas_limit); // Send container for execution container is preverified. + interpreter.instruction_result = InstructionResult::CallOrCreate; interpreter.next_action = InterpreterAction::EOFCreate { inputs: Box::new(EOFCreateInputs::new( interpreter.contract.target_address,