From 27b43eb60f6ec42b314b9e7e0b0ae215b2814d3a Mon Sep 17 00:00:00 2001 From: Chengxuan Xing Date: Tue, 24 Sep 2024 13:02:59 +0100 Subject: [PATCH] revert changes Signed-off-by: Chengxuan Xing --- .../gas_cost/zeto_anon_enc_nullifier_kyc_cost_analysis.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solidity/test/gas_cost/zeto_anon_enc_nullifier_kyc_cost_analysis.ts b/solidity/test/gas_cost/zeto_anon_enc_nullifier_kyc_cost_analysis.ts index 0f112c7..46c7817 100644 --- a/solidity/test/gas_cost/zeto_anon_enc_nullifier_kyc_cost_analysis.ts +++ b/solidity/test/gas_cost/zeto_anon_enc_nullifier_kyc_cost_analysis.ts @@ -44,7 +44,7 @@ import { } from '../utils'; import { deployZeto } from '../lib/deploy'; -const TOTAL_AMOUNT = parseInt(process.env.TOTAL_ROUNDS || '10'); +const TOTAL_AMOUNT = parseInt(process.env.TOTAL_ROUNDS || '1000'); const TX_CONCURRENCY = parseInt(process.env.TX_CONCURRENCY || '30'); export interface PreparedTransferData { @@ -57,7 +57,7 @@ export interface PreparedTransferData { encodedProof: any; } -describe.only('(Gas cost analysis) Zeto based fungible token with anonymity using nullifiers and encryption with KYC', function () { +describe.skip('(Gas cost analysis) Zeto based fungible token with anonymity using nullifiers and encryption with KYC', function () { let deployer: Signer; let Alice: User; let Bob: User;