Skip to content

Commit

Permalink
restore skip
Browse files Browse the repository at this point in the history
Signed-off-by: Chengxuan Xing <[email protected]>
  • Loading branch information
Chengxuan committed Sep 24, 2024
1 parent 287a069 commit b71d928
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import {
} from '../utils';
import { deployZeto } from '../lib/deploy';

const TOTAL_AMOUNT = parseInt(process.env.TOTAL_ROUNDS || '20');
const TOTAL_AMOUNT = parseInt(process.env.TOTAL_ROUNDS || '1000');
const TX_CONCURRENCY = parseInt(process.env.TX_CONCURRENCY || '30');

export interface PreparedTransferData {
Expand All @@ -55,7 +55,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;
Expand Down Expand Up @@ -344,6 +344,7 @@ describe.only('(Gas cost analysis) Zeto based fungible token with anonymity usin
);
if (prepPromises.length >= 1) {
// NOTE: if you are running locally on your laptop, the proof generation will be sequential, tune up this number will just make all concurrent proof gen batch longer
// There is a known "Invalid proof" bug: https://github.com/hyperledger-labs/zeto/issues/80
await Promise.all(prepPromises);
prepPromises = []; // Reset promises for the next batch
}
Expand Down

0 comments on commit b71d928

Please sign in to comment.