From 055bc98f0918604113ace2ed1078eeed89a61e99 Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Thu, 24 Nov 2022 09:17:18 +0100 Subject: [PATCH] circuit contract: simplify main for first test Signed-off-by: Csaba Kiraly --- circuits/storer.circom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuits/storer.circom b/circuits/storer.circom index 5cb71e8..d1e9a62 100644 --- a/circuits/storer.circom +++ b/circuits/storer.circom @@ -75,4 +75,4 @@ template StorageProver(blockSize, qLen, nLevels) { //component main {public [blockHash]} = HashCheck(512); //template StorageProver(blockSize, qLen, nLevels) { //component main {public [indices]} = StorageProver(512, 1, 10); -component main {public [indices, root]} = StorageProver(10, 22, 20); +component main {public [indices, root]} = StorageProver(2, 1, 20);