Skip to content

Commit 9093207

Browse files
authored
Fix (#6526)
1 parent dcf25ff commit 9093207

File tree

1 file changed

+1
-1
lines changed
  • crates/evm/traces/src/decoder

1 file changed

+1
-1
lines changed

crates/evm/traces/src/decoder/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ impl CallTraceDecoder {
410410
s = funcs.iter().find_map(|func| self.decode_cheatcode_outputs(func));
411411
}
412412

413-
if s.is_some() {
413+
if s.is_none() {
414414
if let Some(values) =
415415
funcs.iter().find_map(|func| func.abi_decode_output(data, false).ok())
416416
{

0 commit comments

Comments
 (0)