Skip to content

zcash_client_backend: Add Orchard support to batch scanning. #2503

zcash_client_backend: Add Orchard support to batch scanning.

zcash_client_backend: Add Orchard support to batch scanning. #2503

GitHub Actions / Clippy (MSRV) failed Feb 26, 2024 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 2038 in zcash_client_sqlite/src/wallet.rs

See this annotation in the file changed.

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

this function takes 4 arguments but 6 arguments were supplied

error[E0061]: this function takes 4 arguments but 6 arguments were supplied
    --> zcash_client_sqlite/src/wallet.rs:2038:10
     |
2038 |         &WalletTx::new(txid, index, vec![], vec![], vec![], vec![]),
     |          ^^^^^^^^^^^^^                              ------  ------ argument of type `std::vec::Vec<_>` unexpected
     |                                                     |
     |                                                     argument of type `std::vec::Vec<_>` unexpected
     |
note: associated function defined here
    --> /home/runner/work/librustzcash/librustzcash/zcash_client_backend/src/wallet.rs:113:12
     |
113  |     pub fn new(
     |            ^^^
help: remove the extra arguments
     |
2038 |         &WalletTx::new(txid, index, vec![], vec![]),
     |                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Check failure on line 2038 in zcash_client_sqlite/src/wallet.rs

See this annotation in the file changed.

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

this function takes 4 arguments but 6 arguments were supplied

error[E0061]: this function takes 4 arguments but 6 arguments were supplied
    --> zcash_client_sqlite/src/wallet.rs:2038:10
     |
2038 |         &WalletTx::new(txid, index, vec![], vec![], vec![], vec![]),
     |          ^^^^^^^^^^^^^                              ------  ------ argument of type `std::vec::Vec<_>` unexpected
     |                                                     |
     |                                                     argument of type `std::vec::Vec<_>` unexpected
     |
note: associated function defined here
    --> /home/runner/work/librustzcash/librustzcash/zcash_client_backend/src/wallet.rs:113:12
     |
113  |     pub fn new(
     |            ^^^
help: remove the extra arguments
     |
2038 |         &WalletTx::new(txid, index, vec![], vec![]),
     |                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~