Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Reproducible builds] v0.36.1 #1373

Draft
wants to merge 1 commit into
base: release/v0.36.1
Choose a base branch
from

Adjust Cargo.toml, for reproducible builds.

c907f3a
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

[Reproducible builds] v0.36.1 #1373

Adjust Cargo.toml, for reproducible builds.
c907f3a
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy failed Dec 28, 2023 in 0s

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

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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),
   |                     +++++          +