Skip to content

Commit

Permalink
fix: remove harcoded hex prefix from calldata (foundry-rs#6209)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evalir authored Nov 3, 2023
1 parent 691e1bd commit eea2b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/evm/fuzz/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl fmt::Display for BaseCounterExample {
if let Some(sig) = &self.signature {
write!(f, "calldata={sig}")?
} else {
write!(f, "calldata=0x{}", self.calldata)?
write!(f, "calldata={}", self.calldata)?
}

write!(f, ", args=[{args}]")
Expand Down

0 comments on commit eea2b78

Please sign in to comment.