Skip to content

Commit

Permalink
fix cargo check nit
Browse files Browse the repository at this point in the history
  • Loading branch information
snissn committed Dec 4, 2024
1 parent 20aefb5 commit 99c1e6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actors/evm/src/interpreter/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ impl<'r, RT: Runtime> System<'r, RT> {
// Use `for_each` to collect all keys
self.transient_slots
.for_each(|key, _| {
keys_to_delete.push(key.clone());
keys_to_delete.push(*key);
Ok(())
})
.map_err(
Expand Down

0 comments on commit 99c1e6b

Please sign in to comment.