We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f6611 commit 959b765Copy full SHA for 959b765
contracts/scripts/keeperBotShutter.ts
@@ -193,8 +193,10 @@ export const shutterAutoReveal = async (disputeKitShutter: DisputeKitShutter | n
193
return [];
194
}
195
196
+ logger.info(`Using Shutter API: ${process.env.SHUTTER_API ?? "mainnet"}`);
197
+
198
const shutterDisputes = await getShutterDisputesToReveal(disputeKitShutter);
- console.log(JSON.stringify(shutterDisputes, null, 2));
199
+ logger.info(`Votes to auto-reveal: ${JSON.stringify(shutterDisputes, null, 2)}`);
200
201
for (const dispute of shutterDisputes) {
202
const { coreDispute, votes } = dispute;
0 commit comments