Skip to content

zcash_client_sqlite: Fix migration DAG edges #466

zcash_client_sqlite: Fix migration DAG edges

zcash_client_sqlite: Fix migration DAG edges #466

GitHub Actions / Clippy (MSRV) failed Aug 21, 2024 in 0s

Clippy (MSRV)

1 error

Details

Results

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

Versions

  • rustc 1.70.0 (90c541806 2023-05-31)
  • cargo 1.70.0 (ec8a8a0ca 2023-04-25)
  • clippy 0.1.70 (90c5418 2023-05-31)

Annotations

Check failure on line 191 in zcash_client_sqlite/src/wallet/init/migrations/ensure_orchard_ua_receiver.rs

See this annotation in the file changed.

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

redundant clone

error: redundant clone
   --> zcash_client_sqlite/src/wallet/init/migrations/ensure_orchard_ua_receiver.rs:191:41
    |
191 |                 Some(SecretVec::new(seed.clone())),
    |                                         ^^^^^^^^ help: remove this
    |
note: this value is dropped without further use
   --> zcash_client_sqlite/src/wallet/init/migrations/ensure_orchard_ua_receiver.rs:191:37
    |
191 |                 Some(SecretVec::new(seed.clone())),
    |                                     ^^^^
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
    = note: `-D clippy::redundant-clone` implied by `-D warnings`