Skip to content

Commit

Permalink
chore: skip is verified check for script deployments (#6523)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Dec 5, 2023
1 parent 13af418 commit dcf25ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/forge/bin/cmd/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ impl CreateArgs {
},
flatten: false,
force: false,
skip_is_verified_check: false,
skip_is_verified_check: true,
watch: true,
retry: self.retry,
libraries: vec![],
Expand Down
2 changes: 1 addition & 1 deletion crates/forge/bin/cmd/script/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl VerifyBundle {
etherscan: self.etherscan.clone(),
flatten: false,
force: false,
skip_is_verified_check: false,
skip_is_verified_check: true,
watch: true,
retry: self.retry,
libraries: libraries.to_vec(),
Expand Down

0 comments on commit dcf25ff

Please sign in to comment.