From 1e81175805d67a66acc3eb050feb507b6fab86b7 Mon Sep 17 00:00:00 2001 From: xlassix Date: Thu, 14 Nov 2024 12:38:41 +0100 Subject: [PATCH] Update cron job schedule to run every minute --- orchestrator/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestrator/src/index.ts b/orchestrator/src/index.ts index 0e1347d..93da502 100644 --- a/orchestrator/src/index.ts +++ b/orchestrator/src/index.ts @@ -19,7 +19,7 @@ import { log } from "./logger"; env.rooch.chainId.map((chain) => { const rooch = new RoochIndexer(env.rooch.privateKey, chain, env.rooch.oracleAddress); new CronJob( - "0 * * * * *", + "0 * * * *", () => { rooch.sendUnfulfilledRequests(); },