Skip to content

Commit

Permalink
[zk-token-sdk] Fix range proof transcript seed typo (#34468)
Browse files Browse the repository at this point in the history
fix range proof transcript seed typo
  • Loading branch information
samkim-crypto authored Dec 14, 2023
1 parent e79c09b commit aaccbdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zk-token-sdk/src/instruction/batched_range_proof/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl BatchedRangeProofContext {
fn new_transcript(&self) -> Transcript {
let mut transcript = Transcript::new(b"BatchedRangeProof");
transcript.append_message(b"commitments", bytes_of(&self.commitments));
transcript.append_message(b"bit-legnths", bytes_of(&self.bit_lengths));
transcript.append_message(b"bit-lengths", bytes_of(&self.bit_lengths));
transcript
}

Expand Down

0 comments on commit aaccbdd

Please sign in to comment.