From 9afa1a1cc110212740bb620a1ed28c3b3a7bd761 Mon Sep 17 00:00:00 2001 From: Blas Rodriguez Irizar Date: Wed, 10 Jan 2024 23:13:45 -0300 Subject: [PATCH] make input public --- circuits/batchverify.circom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuits/batchverify.circom b/circuits/batchverify.circom index eeda2e1..815a674 100644 --- a/circuits/batchverify.circom +++ b/circuits/batchverify.circom @@ -66,7 +66,7 @@ template BatchVerify(n, m) { } // 4 messages each contain 16 bytes -component main = BatchVerify(16, 4); +component main {public [msg, S, PointA, PointR]} = BatchVerify(16, 4);