Skip to content

Commit

Permalink
Moar clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
elfedy committed Aug 20, 2024
1 parent 9f3bc9b commit 628e6dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/verify/src/etherscan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ impl EtherscanVerificationProvider {
)),
}?;

if maybe_creation_code.starts_with(&bytecode) {
if maybe_creation_code.starts_with(bytecode) {
let constructor_args = &maybe_creation_code[bytecode.len()..];
let constructor_args = hex::encode(constructor_args);
shell::println(format!(
Expand Down

0 comments on commit 628e6dd

Please sign in to comment.