Memory Wallet Implementation #211
GitHub Actions / Clippy (MSRV)
failed
Dec 3, 2024 in 0s
Clippy (MSRV)
2 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 2 |
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 85 in zcash_client_memory/src/types/nullifier.rs
github-actions / Clippy (MSRV)
non-exhaustive patterns: `proto::generated::ShieldedProtocol::Orchard` not covered
error[E0004]: non-exhaustive patterns: `proto::generated::ShieldedProtocol::Orchard` not covered
--> zcash_client_memory/src/types/nullifier.rs:85:22
|
85 | Ok(match nullifier.protocol() {
| ^^^^^^^^^^^^^^^^^^^^ pattern `proto::generated::ShieldedProtocol::Orchard` not covered
|
note: `proto::generated::ShieldedProtocol` defined here
--> zcash_client_memory/src/proto/generated.rs:76:10
|
76 | pub enum ShieldedProtocol {
| ^^^^^^^^^^^^^^^^
77 | Sapling = 0,
78 | Orchard = 1,
| ------- not covered
= note: the matched value is of type `proto::generated::ShieldedProtocol`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
88 ~ },
89 + proto::generated::ShieldedProtocol::Orchard => todo!()
|
Check failure on line 85 in zcash_client_memory/src/types/nullifier.rs
github-actions / Clippy (MSRV)
non-exhaustive patterns: `proto::generated::ShieldedProtocol::Orchard` not covered
error[E0004]: non-exhaustive patterns: `proto::generated::ShieldedProtocol::Orchard` not covered
--> zcash_client_memory/src/types/nullifier.rs:85:22
|
85 | Ok(match nullifier.protocol() {
| ^^^^^^^^^^^^^^^^^^^^ pattern `proto::generated::ShieldedProtocol::Orchard` not covered
|
note: `proto::generated::ShieldedProtocol` defined here
--> zcash_client_memory/src/proto/generated.rs:76:10
|
76 | pub enum ShieldedProtocol {
| ^^^^^^^^^^^^^^^^
77 | Sapling = 0,
78 | Orchard = 1,
| ------- not covered
= note: the matched value is of type `proto::generated::ShieldedProtocol`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
88 ~ },
89 + proto::generated::ShieldedProtocol::Orchard => todo!()
|
Loading