hel 1 년 전
부모
커밋
3da3aac37b
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      src/onchain/week2/randomWeek2.ts

+ 5 - 3
src/onchain/week2/randomWeek2.ts

@@ -10,8 +10,10 @@ async function startCheck(concurrency) {
     take: 40000,
   })
   await forEachAsync(accountsRaw, concurrency, async (account, index) => {
-    console.log(`${index}/${accountsRaw.length}: processing ${account.address}`)
-    console.log(account.id)
+    console.log(
+      `${index}/${accountsRaw.length}: processing ${account.address},account id: ${account.id}`,
+    )
+
     try {
       // await faucetAccount(account.address)
       const notDone = []
@@ -119,4 +121,4 @@ async function startCheck(concurrency) {
   })
 }
 
-startCheck(120)
+startCheck(88)