From 501a8782c7513362e25946cd66524f6f77221a7a Mon Sep 17 00:00:00 2001 From: ggnine-jito <122913584+ggnine-jito@users.noreply.github.com> Date: Mon, 8 Jan 2024 14:04:18 -0800 Subject: [PATCH] add direct call of funct in util page (#7) --- scripts/governance-notifier.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/governance-notifier.ts b/scripts/governance-notifier.ts index 18f5fa24fc..89b6654eb5 100644 --- a/scripts/governance-notifier.ts +++ b/scripts/governance-notifier.ts @@ -29,6 +29,7 @@ export function errorWrapper() { export async function runNotifier() { const REALM = 'Jito' + console.log("starting governance notifier") const connectionContext = getConnectionContext('mainnet') const realmInfo = await getCertifiedRealmInfo(REALM, connectionContext) @@ -203,3 +204,5 @@ export async function runNotifier() { `-- countOpenForVotingSinceSomeTime: ${countOpenForVotingSinceSomeTime}, countJustOpenedForVoting: ${countJustOpenedForVoting}, countVotingNotStartedYet: ${countVotingNotStartedYet}, countClosed: ${countClosed}, countCancelled: ${countCancelled}` ) } + +errorWrapper() \ No newline at end of file