[zk-token-sdk] Fix range proof transcript seed typo (#34468)

fix range proof transcript seed typo
This commit is contained in:
samkim-crypto 2023-12-14 13:37:12 -08:00 committed by GitHub
parent e79c09bdc4
commit aaccbdd0ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
}