From f468de9a0a51369fca240bfc203e3f6600aaf7cb Mon Sep 17 00:00:00 2001 From: poma Date: Fri, 29 Oct 2021 18:37:09 +0100 Subject: [PATCH] fix test and readme --- .github/workflows/build.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3842bc..b650986 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: - run: npx ganache-cli > /dev/null & - run: npm run migrate:dev - run: yarn test - - run: node cli.js test + - run: node src/cli.js test - run: yarn lint - name: Telegram Failure Notification uses: appleboy/telegram-action@0.0.7 diff --git a/README.md b/README.md index 49d7674..819d297 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ Tornado Cash is a non-custodial Ethereum and ERC20 privacy solution based on zkS To make a deposit user generates a secret and sends its hash (called a commitment) along with the deposit amount to the Tornado smart contract. The contract accepts the deposit and adds the commitment to its list of deposits. -Later, the user decides to make a withdrawal. To do that, the user should provide a proof that he or she possesses a secret to an unspent commitment from the smart contract’s list of deposits. zkSnark technology allows that to happen without revealing which exact deposit corresponds to this secret. The smart contract will check the proof, and transfer deposited funds to the address specified for withdrawal. An external observer will be unable to determine which deposit this withdrawal came from. +Later, the user decides to make a withdrawal. To do that, the user should provide a proof that he or she possesses a secret to an unspent commitment from the smart contract’s list of deposits. zkSnark technology allows that to happen without revealing which exact deposit corresponds to this secret. The smart contract will check the proof and transfer deposited funds to the address specified for withdrawal. An external observer will be unable to determine which deposit this withdrawal came from. -You can read more about it in [this medium article](https://medium.com/@tornado.cash/introducing-private-transactions-on-ethereum-now-42ee915babe0) +You can read more about it in [this Medium article](https://medium.com/@tornado.cash/introducing-private-transactions-on-ethereum-now-42ee915babe0) ## Specs