Skip to content

Commit

Permalink
fix: record state diffs in all() (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Oct 4, 2024
1 parent 23c1d43 commit faa7b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tracing/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl TracingInspectorConfig {
record_steps: true,
record_memory_snapshots: true,
record_stack_snapshots: StackSnapshotType::Full,
record_state_diff: false,
record_state_diff: true,
record_returndata_snapshots: true,
record_opcodes_filter: None,
exclude_precompile_calls: false,
Expand All @@ -91,7 +91,7 @@ impl TracingInspectorConfig {
}
}

/// Returns a config with everything is disabled.
/// Returns a config with everything disabled.
pub const fn none() -> Self {
Self {
record_steps: false,
Expand Down

0 comments on commit faa7b84

Please sign in to comment.