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 }