Skip to content

Commit a72b2a7

Browse files
committed
fix: a couple small things
1 parent 871239a commit a72b2a7

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ signet-zenith = { version = "0.13", path = "crates/zenith" }
4848
signet-test-utils = { version = "0.13", path = "crates/test-utils" }
4949

5050
# trevm
51-
trevm = { version = "0.30.0", features = ["full_env_cfg"] }
51+
trevm = { version = "0.29.0", features = ["full_env_cfg"] }
5252

5353
# Alloy periphery crates
5454
alloy-core = "1.4"

crates/sim/src/env/sim_env.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ where
135135
let reason = trevm.result().output().cloned().map(hex::encode);
136136
let halted = trevm.result().is_halt();
137137
let halt_reason = if let ExecutionResult::Halt { reason, .. } = trevm.result() {
138-
Some(reason.clone())
138+
Some(*reason)
139139
} else {
140140
None
141141
};

crates/test-utils/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ trevm = { workspace = true, features = ["test-utils"] }
2222

2323
alloy.workspace = true
2424

25-
tracing-subscriber.workspace = true
2625
tokio.workspace = true
26+
tracing-subscriber = { workspace = true, features = ["env-filter"] }
2727
uuid = { workspace = true, features = ["v4"] }
2828

29-
[dev-dependencies]
30-
tracing-subscriber = { workspace = true, features = ["env-filter"] }

0 commit comments

Comments
 (0)