November 2023 - Rust Nightly Update (#413)

* Update nightly

* Replace .get(0) with .first()

* allow new clippy lint

---------

Co-authored-by: GitHub Actions <>
Co-authored-by: Luke Parker <lukeparker5132@gmail.com>
This commit is contained in:
github-actions[bot]
2023-11-03 05:28:07 -04:00
committed by GitHub
parent ae449535ff
commit a2089c61fb
11 changed files with 15 additions and 13 deletions

View File

@@ -33,5 +33,5 @@ pub(crate) fn merkle(hash_args: &[[u8; 32]]) -> [u8; 32] {
hashes = interim;
}
hashes.get(0).copied().map(Into::into).unwrap_or(zero)
hashes.first().copied().map(Into::into).unwrap_or(zero)
}