hel 1 жил өмнө
parent
commit
3da3aac37b

+ 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)