From ac900148ed976fb333a67ea1a0d157e2a0c7d387 Mon Sep 17 00:00:00 2001 From: str4d Date: Thu, 19 Aug 2021 14:33:52 +0100 Subject: [PATCH] Fix typo in gate documentation Co-authored-by: ying tong --- src/circuit/gadget/sinsemilla/note_commit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/circuit/gadget/sinsemilla/note_commit.rs b/src/circuit/gadget/sinsemilla/note_commit.rs index 9a332bf4..b61e1322 100644 --- a/src/circuit/gadget/sinsemilla/note_commit.rs +++ b/src/circuit/gadget/sinsemilla/note_commit.rs @@ -146,7 +146,7 @@ impl NoteCommitConfig { meta.create_gate("NoteCommit MessagePiece d", |meta| { let q_notecommit_d = meta.query_selector(config.q_notecommit_d); - // d has been constrained to 10 bits by the Sinsemilla hash. + // d has been constrained to 60 bits by the Sinsemilla hash. let d = meta.query_advice(col_l, Rotation::cur()); // This gate constrains d_0 to be boolean. let d_0 = meta.query_advice(col_m, Rotation::cur());