Skip to content

Fix backward compatibility when building Bundle#239

Merged
PaulLaux merged 3 commits into
zcash_pr471_reviewfrom
backward_compatible_digest
Feb 11, 2026
Merged

Fix backward compatibility when building Bundle#239
PaulLaux merged 3 commits into
zcash_pr471_reviewfrom
backward_compatible_digest

compact zatoshi-only padding

1fc8856
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
GitHub Actions / Clippy Result (stable) succeeded Feb 11, 2026 in 16s

Clippy (Stable ~ Linux/x86_64)

Clippy was successful!

Details

Running cargo clippy took roughly ~16591ms 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();
    |         +++++++