Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Apr 29, 2024
1 parent 6949878 commit b5f26f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/revm/src/state_change.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ where
if ancestor_block_number == 0 {
break
}
ancestor_block_number = ancestor_block_number - 1;
ancestor_block_number -= 1;

let (slot, value) =
eip2935_block_hash_slot(ancestor_block_number, db).map_err(|err| {
Expand Down

0 comments on commit b5f26f5

Please sign in to comment.