diff --git a/circuits/withdraw.circom b/circuits/withdraw.circom index a2051ea..bde3da2 100644 --- a/circuits/withdraw.circom +++ b/circuits/withdraw.circom @@ -7,6 +7,9 @@ template Withdraw() { signal input address; signal output identityCommitment <== Poseidon(1)([identitySecret]); + + // Dummy constraint to prevent compiler optimizing it + signal addressHashed <== address * address; } component main { public [address] } = Withdraw(); \ No newline at end of file