(meta, now)
| 3585 | } |
| 3586 | |
| 3587 | function getAccountStatus(meta, now) { |
| 3588 | if (!meta) return 'ready'; |
| 3589 | if (meta.cooldownUntil && meta.cooldownUntil > now) return 'cooldown'; |
| 3590 | if (meta.expired) return 'expired'; |
| 3591 | return 'ready'; |
| 3592 | } |
| 3593 | |
| 3594 | function buildAccountPool(provider) { |
| 3595 | const activePlugin = getActiveGooglePlugin(); |