[Reproducible builds] v0.36.1 #1373
clippy
3 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 3 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.66.0-nightly (db0597f56 2022-10-11)
- cargo 1.66.0-nightly (3cdf1ab25 2022-10-07)
- clippy 0.1.66 (db0597f 2022-10-11)
Annotations
Check failure on line 2 in contracts/feature-tests/composability/local-esdt-and-nft/meta/src/main.rs
github-actions / clippy
the trait bound `local_esdt_and_nft::AbiProvider: elrond_wasm_debug::elrond_wasm::contract_base::ContractAbiProvider` is not satisfied
error[E0277]: the trait bound `local_esdt_and_nft::AbiProvider: elrond_wasm_debug::elrond_wasm::contract_base::ContractAbiProvider` is not satisfied
--> contracts/feature-tests/composability/local-esdt-and-nft/meta/src/main.rs:2:40
|
2 | elrond_wasm_debug::meta::perform::<local_esdt_and_nft::AbiProvider>();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `elrond_wasm_debug::elrond_wasm::contract_base::ContractAbiProvider` is not implemented for `local_esdt_and_nft::AbiProvider`
|
note: required by a bound in `elrond_wasm_debug::meta::perform`
--> /home/runner/work/mx-sdk-rs/mx-sdk-rs/elrond-wasm-debug/src/meta/meta_main.rs:8:24
|
8 | pub fn perform<AbiObj: ContractAbiProvider>() {
| ^^^^^^^^^^^^^^^^^^^ required by this bound in `elrond_wasm_debug::meta::perform`
Check failure on line 2 in contracts/examples/nft-storage-prepay/meta/src/main.rs
github-actions / clippy
the trait bound `nft_storage_prepay::AbiProvider: elrond_wasm_debug::elrond_wasm::contract_base::ContractAbiProvider` is not satisfied
error[E0277]: the trait bound `nft_storage_prepay::AbiProvider: elrond_wasm_debug::elrond_wasm::contract_base::ContractAbiProvider` is not satisfied
--> contracts/examples/nft-storage-prepay/meta/src/main.rs:2:40
|
2 | elrond_wasm_debug::meta::perform::<nft_storage_prepay::AbiProvider>();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `elrond_wasm_debug::elrond_wasm::contract_base::ContractAbiProvider` is not implemented for `nft_storage_prepay::AbiProvider`
|
note: required by a bound in `elrond_wasm_debug::meta::perform`
--> /home/runner/work/mx-sdk-rs/mx-sdk-rs/elrond-wasm-debug/src/meta/meta_main.rs:8:24
|
8 | pub fn perform<AbiObj: ContractAbiProvider>() {
| ^^^^^^^^^^^^^^^^^^^ required by this bound in `elrond_wasm_debug::meta::perform`
Check failure on line 31 in elrond-interact-snippets/src/interactor_vm_query.rs
github-actions / clippy
mismatched types
error[E0308]: mismatched types
--> elrond-interact-snippets/src/interactor_vm_query.rs:31:21
|
31 | caller: sc_address,
| ^^^^^^^^^^ expected enum `std::option::Option`, found struct `elrond_sdk_erdrs::data::address::Address`
|
= note: expected enum `std::option::Option<elrond_sdk_erdrs::data::address::Address>`
found struct `elrond_sdk_erdrs::data::address::Address`
help: try wrapping the expression in `Some`
|
31 | caller: Some(sc_address),
| +++++ +