Use Iterator::all() in place of Iterator::fold()

This commit is contained in:
Jack Grigg 2019-03-19 22:11:29 +13:00
parent 98d7621135
commit 263bbe1207
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ impl CommitmentTree {
self.left.is_some()
&& self.right.is_some()
&& self.parents.len() == depth - 1
&& self.parents.iter().fold(true, |acc, p| acc && p.is_some())
&& self.parents.iter().all(|p| p.is_some())
}
/// Adds a note to the tree. Returns an error if the tree is full.