Skip to content

Commit

Permalink
improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
TAdev0 committed Sep 22, 2024
1 parent 403b307 commit 0f090f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/consensus/src/types/utreexo.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub trait UtreexoAccumulator {
) -> Result<(), UtreexoError>;
}

/// https://eprint.iacr.org/2019/611.pdf page6, Adding and removing elements
/// https://eprint.iacr.org/2019/611.pdf page 6 - Adding and removing elements.
fn parent_hash(left: felt252, right: felt252) -> felt252 {
return PoseidonTrait::new().update_with(left).update_with(right).finalize();
}
Expand Down

0 comments on commit 0f090f6

Please sign in to comment.