We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7de6bf commit 5a7b194Copy full SHA for 5a7b194
crates/script/src/verify.rs
@@ -210,7 +210,7 @@ impl VerifyBundle {
210
211
let contract_bytecode_hash = foundry_zksync_core::hash_bytecode(bytecode);
212
if bytecode_hash == contract_bytecode_hash {
213
- if artifact.source.extension().map_or(false, |e| e.to_str() == Some("vy")) {
+ if artifact.source.extension().is_some_and(|e| e.to_str() == Some("vy")) {
214
warn!("Skipping verification of Vyper contract: {}", artifact.name);
215
}
216
0 commit comments