From 4a0a99e26486b72493910ae933c06661aec48c8f Mon Sep 17 00:00:00 2001 From: jonesmarvin8 <83104039+jonesmarvin8@users.noreply.github.com> Date: Fri, 5 Sep 2025 20:48:47 -0400 Subject: [PATCH] Update nssa/src/state.rs Co-authored-by: Sergio Chouhy <41742639+schouhy@users.noreply.github.com> --- nssa/src/state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssa/src/state.rs b/nssa/src/state.rs index 1817445..8641e14 100644 --- a/nssa/src/state.rs +++ b/nssa/src/state.rs @@ -30,7 +30,7 @@ impl CommitmentSet { .map(|path| (index, path)) } - /// Inserts a list of commitments to the CommitmentSet. + /// Inserts a list of commitments to the `CommitmentSet`. pub(crate) fn extend(&mut self, commitments: &[Commitment]) { for commitment in commitments.iter().cloned() { let index = self.merkle_tree.insert(commitment.to_byte_array());