Skip to content

Commit 959b765

Browse files
committed
chore: keeper bot logging
1 parent c3f6611 commit 959b765

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

contracts/scripts/keeperBotShutter.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,10 @@ export const shutterAutoReveal = async (disputeKitShutter: DisputeKitShutter | n
193193
return [];
194194
}
195195

196+
logger.info(`Using Shutter API: ${process.env.SHUTTER_API ?? "mainnet"}`);
197+
196198
const shutterDisputes = await getShutterDisputesToReveal(disputeKitShutter);
197-
console.log(JSON.stringify(shutterDisputes, null, 2));
199+
logger.info(`Votes to auto-reveal: ${JSON.stringify(shutterDisputes, null, 2)}`);
198200

199201
for (const dispute of shutterDisputes) {
200202
const { coreDispute, votes } = dispute;

0 commit comments

Comments
 (0)