Skip to content

Commit 8fade41

Browse files
committed
chore: bump version
1 parent 95d791e commit 8fade41

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trevm"
3-
version = "0.27.3"
3+
version = "0.27.4"
44
rust-version = "1.83.0"
55
edition = "2021"
66
authors = ["init4"]

src/evm.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,7 @@ where
184184
NewState: Copy,
185185
{
186186
let (old, this) = self.take_inspector();
187-
let this = this.set_inspector(inspector);
188-
let this = f(this);
187+
let this = f(this.set_inspector(inspector));
189188
this.set_inspector(old)
190189
}
191190

0 commit comments

Comments
 (0)