Changed default cooldown time to 10 seconds

This commit is contained in:
Badri Narayanan S
2026-01-06 22:22:32 +05:30
parent 84166fdefe
commit 5b70b7703e

View File

@@ -74,7 +74,7 @@ export const ACCOUNT_CONFIG_PATH = join(
// Uses platform-specific path detection // Uses platform-specific path detection
export const ANTIGRAVITY_DB_PATH = getAntigravityDbPath(); export const ANTIGRAVITY_DB_PATH = getAntigravityDbPath();
export const DEFAULT_COOLDOWN_MS = 60 * 1000; // 1 minute default cooldown export const DEFAULT_COOLDOWN_MS = 10 * 1000; // 10 second default cooldown
export const MAX_RETRIES = 5; // Max retry attempts across accounts export const MAX_RETRIES = 5; // Max retry attempts across accounts
export const MAX_ACCOUNTS = 10; // Maximum number of accounts allowed export const MAX_ACCOUNTS = 10; // Maximum number of accounts allowed