Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
chore: reduce to 15 wallets
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Oct 30, 2023
1 parent 1e24767 commit 062ead7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/setup.jest.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as fs from 'fs';
import path from 'path';

import { WALLETS_TO_CREATE } from './utils/constants';
// import { WALLETS_TO_CREATE } from './utils/constants';
import { createLocalWallet, setupInitialContractState } from './utils/helper';
import { arlocal, arweave, warp } from './utils/services';

Expand All @@ -21,9 +21,7 @@ module.exports = async () => {

// create owner wallet
const wallets = await Promise.all(
Array.from({ length: WALLETS_TO_CREATE }).map(() =>
createLocalWallet(arweave),
),
Array.from({ length: 15 }).map(() => createLocalWallet(arweave)),
);
// save wallets to disk
console.log('Saving wallets to disk!'); // eslint-disable-line
Expand Down

0 comments on commit 062ead7

Please sign in to comment.