diff --git a/bitcoin/src/taproot/merkle_branch.rs b/bitcoin/src/taproot/merkle_branch.rs index c629eacb6..10b2d0718 100644 --- a/bitcoin/src/taproot/merkle_branch.rs +++ b/bitcoin/src/taproot/merkle_branch.rs @@ -252,6 +252,7 @@ impl Iterator for IntoIter { fn nth(&mut self, n: usize) -> Option { self.0.nth(n) } #[inline] + #[allow(clippy::double_ended_iterator_last)] // False positive. Using `.last()` on a `vec::IntoIter` is correct. fn last(self) -> Option { self.0.last() } #[inline] diff --git a/nightly-version b/nightly-version index ecd2b22dc..4b004c97e 100644 --- a/nightly-version +++ b/nightly-version @@ -1 +1 @@ -nightly-2025-01-10 +nightly-2025-01-16