Skip to content

WIP

WIP #1890

GitHub Actions / Clippy (MSRV) failed Aug 7, 2023 in 0s

Clippy (MSRV)

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
Warning 0
Note 0
Help 0

Versions

  • rustc 1.65.0 (897e37553 2022-11-02)
  • cargo 1.65.0 (4bc8f24d3 2022-10-20)
  • clippy 0.1.65 (897e375 2022-11-02)

Annotations

Check failure on line 706 in zcash_client_backend/src/data_api/wallet.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (MSRV)

this enum takes 4 generic arguments but 5 generic arguments were supplied

error[E0107]: this enum takes 4 generic arguments but 5 generic arguments were supplied
   --> zcash_client_backend/src/data_api/wallet.rs:706:5
    |
706 |     Error<
    |     ^^^^^ expected 4 generic arguments
...
711 |         DbT::NoteRef,
    |         ------------ help: remove this generic argument
    |
note: enum defined here, with 4 generic parameters: `DataSourceError`, `CommitmentTreeError`, `SelectionError`, `FeeError`
   --> zcash_client_backend/src/data_api/error.rs:27:10
    |
27  | pub enum Error<DataSourceError, CommitmentTreeError, SelectionError, FeeError> {
    |          ^^^^^ ---------------  -------------------  --------------  --------

Check failure on line 17 in zcash_client_backend/src/proto.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (MSRV)

unused imports: `PoolType`, `ShieldedProtocol`

error: unused imports: `PoolType`, `ShieldedProtocol`
  --> zcash_client_backend/src/proto.rs:17:51
   |
17 |     data_api::{wallet::input_selection::Proposal, PoolType, ShieldedProtocol, WalletRead},
   |                                                   ^^^^^^^^  ^^^^^^^^^^^^^^^^
   |
   = note: `-D unused-imports` implied by `-D warnings`