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