Skip to content

Implement Base64 encoding for ZIP 304 signatures #390

Implement Base64 encoding for ZIP 304 signatures

Implement Base64 encoding for ZIP 304 signatures #390

GitHub Actions / Clippy (MSRV) failed Nov 13, 2023 in 1s

Clippy (MSRV)

1 error

Details

Results

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

Versions

  • rustc 1.65.0 (897e37553 2022-11-02)
  • cargo 1.65.0 (4bc8f24d3 2022-10-20)
  • clippy 0.1.65 (897e375 2022-11-02)

Annotations

Check failure on line 28 in zcash_primitives/src/sapling/zip304.rs

See this annotation in the file changed.

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

constants have by default a `'static` lifetime

error: constants have by default a `'static` lifetime
  --> zcash_primitives/src/sapling/zip304.rs:28:39
   |
28 | const ZIP304_PERSONALIZATION_PREFIX: &'static [u8; 12] = b"ZIP304Signed";
   |                                      -^^^^^^^--------- help: consider removing `'static`: `&[u8; 12]`
   |
   = note: `-D clippy::redundant-static-lifetimes` implied by `-D warnings`
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_static_lifetimes