wip: bump cw-std to 2+; disable cw-orch #134
clippy
3 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 3 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.83.0 (90b35a623 2024-11-26)
- cargo 1.83.0 (5ffbef321 2024-10-29)
- clippy 0.1.83 (90b35a6 2024-11-26)
Annotations
Check warning on line 125 in contracts/main/voice/src/contract.rs
github-actions / clippy
this expression creates a reference which is immediately dereferenced by the compiler
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> contracts/main/voice/src/contract.rs:125:54
|
125 | ... instantiate2_address(&checksum.as_slice(), &contract, &salt)?
| ^^^^^^^^^^^^^^^^^^^^ help: change this to: `checksum.as_slice()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
= note: `#[warn(clippy::needless_borrow)]` on by default
Check warning on line 150 in contracts/main/voice/src/ibc.rs
github-actions / clippy
use of deprecated field `cosmwasm_std::SubMsgResponse::data`: Deprecated in the Cosmos SDK in favor of msg_responses. If your chain is running on CosmWasm 2.0 or higher, msg_responses will be filled. For older versions, the data field is still needed since msg_responses is empty in those cases.
warning: use of deprecated field `cosmwasm_std::SubMsgResponse::data`: Deprecated in the Cosmos SDK in favor of msg_responses. If your chain is running on CosmWasm 2.0 or higher, msg_responses will be filled. For older versions, the data field is still needed since msg_responses is empty in those cases.
--> contracts/main/voice/src/ibc.rs:150:38
|
150 | let SubMsgResponse { data: Some(b), .. } = r else {
| ^^^^^^^^^^^^^
Check warning on line 125 in contracts/main/voice/src/ibc.rs
github-actions / clippy
use of deprecated field `cosmwasm_std::SubMsgResponse::data`: Deprecated in the Cosmos SDK in favor of msg_responses. If your chain is running on CosmWasm 2.0 or higher, msg_responses will be filled. For older versions, the data field is still needed since msg_responses is empty in those cases.
warning: use of deprecated field `cosmwasm_std::SubMsgResponse::data`: Deprecated in the Cosmos SDK in favor of msg_responses. If your chain is running on CosmWasm 2.0 or higher, msg_responses will be filled. For older versions, the data field is still needed since msg_responses is empty in those cases.
--> contracts/main/voice/src/ibc.rs:125:38
|
125 | let SubMsgResponse { data: Some(b), .. } = response else {
| ^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default