Address review comments from zcash PR #471 (2) #243
Merged
GitHub Actions / Clippy Result (stable)
succeeded
Mar 6, 2026 in 18s
Clippy (Stable ~ Linux/x86_64)
Clippy was successful!
Details
Running cargo clippy took roughly ~17445ms to complete
- Working Directory: repository directory
Annotations
Check warning on line 180 in /home/runner/work/orchard/orchard/src/lib.rs
github-actions / Clippy Result (stable)
/home/runner/work/orchard/orchard/src/lib.rs#L180
unused return value of `core::hash::Hasher::finish` that must be used
Raw output
warning: unused return value of `core::hash::Hasher::finish` that must be used
--> src/note/asset_base.rs:180:9
|
180 | h.finish();
| ^^^^^^^^^^
|
= note: `#[warn(unused_must_use)]` (part of `#[warn(unused)]`) on by default
help: use `let _ = ...` to ignore the resulting value
|
180 | let _ = h.finish();
| +++++++
Loading