Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacqueline-57b committed Nov 4, 2024
1 parent 05dc410 commit 76e709c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/faucet_load_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
pip install -r requirements.txt
- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '20'

Expand Down
2 changes: 1 addition & 1 deletion faucet/generate_wallet_address.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function generateWalletAddresses(filePath: string, num: number) {
const file = fs.createWriteStream(filePath, { flags: 'a' });
for (let i = 0; i < num; i++) {
const wallet = node.deriveChild(i);
console.log(`Wallet ${i + 1}: ${wallet.address}`);
// console.log(`Wallet ${i + 1}: ${wallet.address}`);
file.write(`"${wallet.address}"\n`);
}
file.end();
Expand Down

0 comments on commit 76e709c

Please sign in to comment.