Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement handling of EphemeralAddresses #31

Merged
merged 12 commits into from
Nov 22, 2024

ensure tests build with all feature flag combinations

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

Implement handling of EphemeralAddresses #31

ensure tests build with all feature flag combinations
41ec5c6
Select commit
Loading
Failed to load commit list.
GitHub Actions / Clippy (MSRV) failed Oct 11, 2024 in 0s

Clippy (MSRV)

4 errors

Details

Results

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

Versions

  • rustc 1.77.0 (aedd173a2 2024-03-17)
  • cargo 1.77.0 (3fe68eabf 2024-02-29)
  • clippy 0.1.77 (aedd173 2024-03-17)

Annotations

Check failure on line 387 in components/zcash_protocol/src/value.rs

See this annotation in the file changed.

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

usage of `Iterator::fold` on a type that implements `Try`

error: usage of `Iterator::fold` on a type that implements `Try`
   --> components/zcash_protocol/src/value.rs:387:14
    |
387 |         iter.fold(Some(Zatoshis::ZERO), |acc, a| acc? + *a)
    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `try_fold` instead: `try_fold(Zatoshis::ZERO, |acc, a| ...)`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_try_fold

Check failure on line 381 in components/zcash_protocol/src/value.rs

See this annotation in the file changed.

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

usage of `Iterator::fold` on a type that implements `Try`

error: usage of `Iterator::fold` on a type that implements `Try`
   --> components/zcash_protocol/src/value.rs:381:14
    |
381 |         iter.fold(Some(Zatoshis::ZERO), |acc, a| acc? + a)
    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `try_fold` instead: `try_fold(Zatoshis::ZERO, |acc, a| ...)`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_try_fold

Check failure on line 202 in components/zcash_protocol/src/value.rs

See this annotation in the file changed.

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

usage of `Iterator::fold` on a type that implements `Try`

error: usage of `Iterator::fold` on a type that implements `Try`
   --> components/zcash_protocol/src/value.rs:202:14
    |
202 |         iter.fold(Some(ZatBalance::zero()), |acc, a| acc? + *a)
    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `try_fold` instead: `try_fold(ZatBalance::zero(), |acc, a| ...)`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_try_fold

Check failure on line 196 in components/zcash_protocol/src/value.rs

See this annotation in the file changed.

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

usage of `Iterator::fold` on a type that implements `Try`

error: usage of `Iterator::fold` on a type that implements `Try`
   --> components/zcash_protocol/src/value.rs:196:14
    |
196 |         iter.fold(Some(ZatBalance::zero()), |acc, a| acc? + a)
    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `try_fold` instead: `try_fold(ZatBalance::zero(), |acc, a| ...)`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_try_fold
    = note: `-D clippy::manual-try-fold` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::manual_try_fold)]`