Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
snissn committed Sep 5, 2024
1 parent 101f6e2 commit 4ddb665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actors/evm/src/interpreter/instructions/memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub fn copy_within_memory(
let destination_region = get_memory_region(memory, dest_index, size)?.expect("empty region");

// Named variables for clarity
let source_range = src_region.offset..(src_region.offset+src_region.size.get());
let source_range = src_region.offset..(src_region.offset + src_region.size.get());
let destination_index = destination_region.offset;

// Copy memory
Expand Down

0 comments on commit 4ddb665

Please sign in to comment.