From c2a54e9187aa26307fb5b0221a1cc30b0f620e28 Mon Sep 17 00:00:00 2001 From: Igor Barinov <424628+igorbarinov@users.noreply.github.com> Date: Sun, 18 Nov 2018 16:51:25 +0100 Subject: [PATCH] Update README.md Problem: -s option is not required and returns an error when used ``` circom -s ./mycircuit.circom -o ./mycircuit.json ENOENT: no such file or directory, open '/Users/user/js/jsbench/circuit.circom' ``` Solution: remove -s option in the README file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bf5ef1..47507d5 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ npm install -g circom The circuit is compiled with the following command: ``` -circom -s mycircuit.circom -o mycircuit.json +circom mycircuit.circom -o mycircuit.json ``` The resulting output ( `mycircuit.json` ) can be used in the [zksnarks JavaScript library](https://github.com/iden3/zksnark).