Bump parity-scale-codec from 3.6.3 to 3.6.9 (#83) #214
Annotations
3 warnings
question mark operator is useless here:
subcryptor/src/keystore.rs#L64
warning: question mark operator is useless here
--> subcryptor/src/keystore.rs:64:2
|
64 | / Ok(array_bytes::slice2array(&decrypted[SEED_OFFSET..SEED_OFFSET + SECRET_KEY_LEN])
65 | | .map_err(Error::ArrayBytes)?)
| |_____________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_question_mark
= note: `#[warn(clippy::needless_question_mark)]` on by default
help: try removing question mark and `Ok()`
|
64 ~ array_bytes::slice2array(&decrypted[SEED_OFFSET..SEED_OFFSET + SECRET_KEY_LEN])
65 ~ .map_err(Error::ArrayBytes)
|
|
question mark operator is useless here:
subcryptor/src/keystore.rs#L64
warning: question mark operator is useless here
--> subcryptor/src/keystore.rs:64:2
|
64 | / Ok(array_bytes::slice2array(&decrypted[SEED_OFFSET..SEED_OFFSET + SECRET_KEY_LEN])
65 | | .map_err(Error::ArrayBytes)?)
| |_____________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_question_mark
= note: `#[warn(clippy::needless_question_mark)]` on by default
help: try removing question mark and `Ok()`
|
64 ~ array_bytes::slice2array(&decrypted[SEED_OFFSET..SEED_OFFSET + SECRET_KEY_LEN])
65 ~ .map_err(Error::ArrayBytes)
|
|
Task cargo clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|