chore: update version to v0.10.1

This commit is contained in:
Bobbin Threadbare
2024-09-13 10:58:06 -07:00
parent 2b184cd4ca
commit e34900c7d8
5 changed files with 13 additions and 12 deletions

View File

@@ -186,7 +186,7 @@ impl PartialMmr {
pub fn inner_nodes<'a, I: Iterator<Item = (usize, RpoDigest)> + 'a>(
&'a self,
mut leaves: I,
) -> impl Iterator<Item = InnerNodeInfo> + '_ {
) -> impl Iterator<Item = InnerNodeInfo> + 'a {
let stack = if let Some((pos, leaf)) = leaves.next() {
let idx = InOrderIndex::from_leaf_pos(pos);
vec![(idx, leaf)]