From a32297bcb19d0cfeda75e4eb507a303be621b4a8 Mon Sep 17 00:00:00 2001 From: poma Date: Wed, 16 Jun 2021 15:22:13 +0300 Subject: [PATCH] fix lint --- .prettierignore | 1 + src/index.js | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.prettierignore b/.prettierignore index 448f66a..9c43edb 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,3 +2,4 @@ .idea artifacts cache +contracts/Verifier*.sol diff --git a/src/index.js b/src/index.js index 26d8beb..98e8b0a 100644 --- a/src/index.js +++ b/src/index.js @@ -135,8 +135,7 @@ async function transaction({ tornadoPool, inputs = [], outputs = [], fee = 0, re value: amount, gasLimit: 1e6, }) - const { gasUsed } = await receipt.wait() - // console.log(`Gas Used ${gasUsed}`) + await receipt.wait() } module.exports = { transaction }