Closed grandizzy closed 1 month ago
Closes #9219
I am not sure if any good reason to create forge_verify::VerifyArgs with skip_is_verified_check: false for forge create https://github.com/foundry-rs/foundry/blob/a428ba6ad8856611339a6319290aade3347d25d9/crates/forge/bin/cmd/create.rs#L353 when in get_verify_args fn they are set to true https://github.com/foundry-rs/foundry/blob/a428ba6ad8856611339a6319290aade3347d25d9/crates/script/src/verify.rs#L149 changing this for consistency and to solve the issue where forge create always prints "is already verified. Skipping verification." without performing verification. @klkvr @yash-atreya can you please chime in?
forge_verify::VerifyArgs
skip_is_verified_check: false
forge create
get_verify_args
Motivation
Closes #9219
Solution
I am not sure if any good reason to create
forge_verify::VerifyArgs
withskip_is_verified_check: false
forforge create
https://github.com/foundry-rs/foundry/blob/a428ba6ad8856611339a6319290aade3347d25d9/crates/forge/bin/cmd/create.rs#L353 when inget_verify_args
fn they are set to true https://github.com/foundry-rs/foundry/blob/a428ba6ad8856611339a6319290aade3347d25d9/crates/script/src/verify.rs#L149 changing this for consistency and to solve the issue whereforge create
always prints "is already verified. Skipping verification." without performing verification. @klkvr @yash-atreya can you please chime in?