Skip to content

Commit

Permalink
fix(vm): Make execution status and stop reason public (#169)
Browse files Browse the repository at this point in the history
# What ❔

* TracerExecutionStatus and TracerExecutionStopReason are part of the
ExecutionEndTracer trait, but they were not publicly available.

## Why ❔

* This breaks external implementations of the ExecutionEndTracer
  • Loading branch information
mm-zk authored Oct 6, 2023
1 parent 0418be1 commit f98c4fa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/lib/vm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ pub use errors::{

pub use tracers::{
call::CallTracer,
traits::{BoxedTracer, DynTracer, ExecutionEndTracer, ExecutionProcessing, VmTracer},
traits::{
BoxedTracer, DynTracer, ExecutionEndTracer, ExecutionProcessing, TracerExecutionStatus,
TracerExecutionStopReason, VmTracer,
},
utils::VmExecutionStopReason,
validation::ViolatedValidationRule,
StorageInvocations, ValidationError, ValidationTracer, ValidationTracerParams,
Expand Down

0 comments on commit f98c4fa

Please sign in to comment.