From ca15143aa36b6d69fa419d508d0ed505698951f9 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Tue, 7 Mar 2023 18:24:15 -0600 Subject: [PATCH] adding todo --- circuits/storer.circom | 1 + 1 file changed, 1 insertion(+) diff --git a/circuits/storer.circom b/circuits/storer.circom index f9f05df..64539f4 100644 --- a/circuits/storer.circom +++ b/circuits/storer.circom @@ -44,6 +44,7 @@ template parallel HashCheck(BLOCK_SIZE) { signal input block[BLOCK_SIZE]; signal input blockHash; + // TODO: make CHUNK_SIZE a parameter // Split array into chunks of size 16 var CHUNK_SIZE = 16; var NUM_CHUNKS = BLOCK_SIZE / CHUNK_SIZE;