Skip to content

Commit

Permalink
fix debug impl
Browse files Browse the repository at this point in the history
  • Loading branch information
joshieDo committed Jun 27, 2024
1 parent 2f75f07 commit 96574f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ethereum-forks/src/hardfork/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl Hardfork for Box<dyn Hardfork> {

impl core::fmt::Debug for dyn Hardfork + 'static {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct(stringify!(self.name())).finish()
f.debug_struct(self.name()).finish()
}
}

Expand Down

0 comments on commit 96574f3

Please sign in to comment.