From d2a72613b00c63e421d7f90fbcb9ed9599df0ca9 Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Thu, 17 Nov 2022 14:00:16 +0100 Subject: [PATCH] cleanup --- circuits/storer.circom | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/circuits/storer.circom b/circuits/storer.circom index b8acdaa..965c74e 100644 --- a/circuits/storer.circom +++ b/circuits/storer.circom @@ -21,7 +21,7 @@ template HashCheck(blockSize) { } template StorageProver(blockSize, qLen, nLevels) { - // blockSize: size of block in bits (sha256), or in ?symbols? (Poseidon) + // blockSize: size of block in bits (sha256), or in symbols (Poseidon) // qLen: query length, i.e. number if indices to be proven // nLevels: size of Merkle Tree in the manifest signal input chunks[qLen][blockSize]; @@ -47,7 +47,6 @@ template StorageProver(blockSize, qLen, nLevels) { component num2Bits[qLen]; component inclusionProofs[qLen]; - //component inclusionProofs[qLen] = MerkleTreeInclusionProof(nLevels); for (var i = 0; i < qLen; i++) { num2Bits[i] = Num2Bits(nLevels);