From 4f62298c390c02f40d0972e3d47ee032166567fa Mon Sep 17 00:00:00 2001 From: Guantong Date: Wed, 11 Dec 2024 20:32:16 +0800 Subject: [PATCH] disable checkTimeoutRelay --- server/plugins/cron.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/plugins/cron.js b/server/plugins/cron.js index 58fdd62..b85e0ef 100644 --- a/server/plugins/cron.js +++ b/server/plugins/cron.js @@ -21,7 +21,8 @@ export default fp(async (fastify) => { allWarns.push(await checkOperatorBalance()); allWarns.push(await checkOracleSignerBalance()); // allWarns.push(await checkOracleSignerSubmition()); - allWarns.push(await checkTimeoutRelay()); + // todo after self host envio + // allWarns.push(await checkTimeoutRelay()); allWarns.push(await checkMsgportAPI()); allWarns.push(await checkPonder()); fastify.log.warn(allWarns);