From 2c6aaf103bdee1f1147d42056d4bdc09b86e1b67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Wahrst=C3=A4tter?= <51536394+Nerolation@users.noreply.github.com> Date: Sat, 16 Jul 2022 06:46:55 +0200 Subject: [PATCH] add missing semicolon --- circuits/merkleTree.circom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuits/merkleTree.circom b/circuits/merkleTree.circom index 3a66975..d9ff4df 100644 --- a/circuits/merkleTree.circom +++ b/circuits/merkleTree.circom @@ -20,7 +20,7 @@ template DualMux() { signal input s; signal output out[2]; - s * (1 - s) === 0 + s * (1 - s) === 0; out[0] <== (in[1] - in[0])*s + in[0]; out[1] <== (in[0] - in[1])*s + in[1]; }