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