From b6a00c6d179c121ddce45d92427ce09b726f9d58 Mon Sep 17 00:00:00 2001 From: Gabriel Garcia Date: Wed, 30 Jan 2019 00:42:50 +0100 Subject: [PATCH 1/2] Fix small command typo --- TUTORIAL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index cb3c0bb..d2a32b6 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -86,13 +86,13 @@ snarkjs --help To show general statistics of this circuit, you can run: ```sh -snarkjs printconstraints -c circuit.json +snarkjs info -c circuit.json ``` You can also print the constraints of the circuit by running: ```sh -snarkjs info -c circuit.json +snarkjs printconstraints -c circuit.json ``` From e37386115c5d69c12c7d049051ab3db7b5250de9 Mon Sep 17 00:00:00 2001 From: Gabriel Garcia Date: Wed, 30 Jan 2019 00:47:39 +0100 Subject: [PATCH 2/2] Remove comment This comment have the same command again, this supposed to be different syntax? --- TUTORIAL.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index d2a32b6..fd2ab86 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -65,8 +65,6 @@ We are now ready to compile the circuit. Run the following command: ```sh circom circuit.circom -o circuit.json - -// Which is equivalent to "circom circuit.circom -o circuit.json" ``` to compile the circuit to a file named `circuit.json`