Skip to content

Commit 7320c15

Browse files
committed
v1 per henry’s bikeshed
1 parent b3ba7ad commit 7320c15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/transcript.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ fn le_u64(value: u64) -> [u8; 8] {
2626

2727
impl TranscriptProtocol for Transcript {
2828
fn rangeproof_domain_sep(&mut self, n: u64, m: u64) {
29-
self.commit_bytes(b"dom-sep", b"rangeproof1");
29+
self.commit_bytes(b"dom-sep", b"rangeproof v1");
3030
self.commit_bytes(b"n", &le_u64(n));
3131
self.commit_bytes(b"m", &le_u64(m));
3232
}
3333

3434
fn innerproduct_domain_sep(&mut self, n: u64) {
35-
self.commit_bytes(b"dom-sep", b"ipp1");
35+
self.commit_bytes(b"dom-sep", b"ipp v1");
3636
self.commit_bytes(b"n", &le_u64(n));
3737
}
3838

0 commit comments

Comments
 (0)