Skip to content

Fix typo

d7a520d
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Address review comments from zcash PR #471 (2) #243

Fix typo
d7a520d
Select commit
Loading
Failed to load commit list.
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

See this annotation in the file changed.

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