Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lightsing committed Sep 3, 2024
1 parent 5e6cbcc commit 7aa80ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/revm/src/context/inner_evm_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,10 @@ impl<DB: Database> InnerEvmContext<DB> {
acc.info.code_hash
};

return Ok(Eip7702CodeLoad::new_not_delegated(hash, acc.is_cold))
Ok(Eip7702CodeLoad::new_not_delegated(hash, acc.is_cold))
} else {
// Scroll does not support EOF yet
return Ok(Eip7702CodeLoad::new_not_delegated(acc.info.code_hash, acc.is_cold))
Ok(Eip7702CodeLoad::new_not_delegated(acc.info.code_hash, acc.is_cold))
}
}
}
Expand Down

0 comments on commit 7aa80ca

Please sign in to comment.