Skip to content

Commit

Permalink
Fix blob_tracer return when running program
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcosNicolau committed Aug 30, 2024
1 parent 8dca5a6 commit 5fb9466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/multivm/src/versions/era_vm/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl<S: ReadStorage + 'static> Vm<S> {
let mut last_tx_result = None;

loop {
let (result, _blob_tracer) = self.inner.run_program_with_custom_bytecode();
let result = self.inner.run_program_with_custom_bytecode();

let result = match result {
ExecutionOutput::Ok(output) => {
Expand Down

0 comments on commit 5fb9466

Please sign in to comment.