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 9e09ffc commit fad8a4aCopy full SHA for fad8a4a
contracts/virus/src/contract.rs
@@ -60,9 +60,11 @@ pub fn execute_spread(
60
61
attributes.push(Attribute::new(format!("path{i}"), path.clone()));
62
63
+ // clippy produces a false positive here, see https://github.com/rust-lang/rust-clippy/issues/9841
64
+ #[allow(clippy::explicit_auto_deref)]
65
let address = deps
66
.api
- .addr_humanize(&instantiate2_address(&checksum, &creator, &salt)?)?;
67
+ .addr_humanize(&instantiate2_address(&*checksum, &creator, &salt)?)?;
68
attributes.push(Attribute::new(
69
format!("predicted_address{i}"),
70
address.clone(),
0 commit comments