|
@@ -5,7 +5,7 @@ import { InitiaClient } from '../InitiaClient'
|
|
|
async function startCheck(concurrency) {
|
|
|
const accountsRaw = await DBClient.instance.account.findMany({
|
|
|
where: {
|
|
|
- status: -3,
|
|
|
+ status: -4,
|
|
|
},
|
|
|
orderBy: {
|
|
|
lastRun: 'desc',
|
|
@@ -26,7 +26,7 @@ async function startCheck(concurrency) {
|
|
|
if (Number(gasGot.amount) < 300000) {
|
|
|
await DBClient.instance.account.update({
|
|
|
where: { id: account.id },
|
|
|
- data: { status: -4 },
|
|
|
+ data: { status: -3 },
|
|
|
//可能领过还没到账的
|
|
|
})
|
|
|
return
|