From 7869e6dae48bc2857645c928900f8de4bc9ef99a Mon Sep 17 00:00:00 2001 From: zajck Date: Wed, 13 Oct 2021 14:46:38 +0200 Subject: [PATCH] removing gas used output --- testHelpers/utils.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/testHelpers/utils.ts b/testHelpers/utils.ts index c4c45e98..197f997c 100644 --- a/testHelpers/utils.ts +++ b/testHelpers/utils.ts @@ -747,10 +747,6 @@ class Utils { const deployerInstance = this.contractCashier.connect(deployer) as Cashier; const tx = await deployerInstance.withdraw(voucherID); - const receipt = await tx.wait(); - - //console.log('GAS USED: ', receipt.gasUsed.toString()); - return tx; }