Skip to content

Commit 475de49

Browse files
committed
nit
1 parent 27115ac commit 475de49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/cheatcodes/src/evm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ fn get_recorded_state_diffs(ccx: &mut CheatsCtxt) -> BTreeMap<Address, AccountSt
14291429
&current_base_slot_values,
14301430
)
14311431
})
1432-
.and_then(|mut info| {
1432+
.map(|mut info| {
14331433
// Always decode values first
14341434
info.decode_values(
14351435
storage_access.previousValue,
@@ -1444,7 +1444,7 @@ fn get_recorded_state_diffs(ccx: &mut CheatsCtxt) -> BTreeMap<Address, AccountSt
14441444
);
14451445
}
14461446

1447-
Some(info)
1447+
info
14481448
})
14491449
});
14501450

0 commit comments

Comments
 (0)