Skip to content

Commit

Permalink
chore(deps): bump reqwest to 0.12 (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Mar 28, 2024
1 parent 7743f29 commit 9f01048
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ alloy-chains = "0.1"
alloy-json-abi = { version = "0.6", default-features = false, features = ["std", "serde_json"] }
alloy-primitives = { version = "0.6", default-features = false, features = ["std", "serde"] }

reqwest = { version = "0.11.19", default-features = false, features = ["json"] }
reqwest = { version = "0.12", default-features = false, features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ impl VerifyContract {
.trim_start_matches("0x")
.to_string()
});
self.constructor_arguments = constructor_args.clone();
self.constructor_arguments.clone_from(&constructor_args);
self.blockscout_constructor_arguments = constructor_args;
self
}
Expand Down

0 comments on commit 9f01048

Please sign in to comment.