Skip to content

Commit

Permalink
fix: logs messages
Browse files Browse the repository at this point in the history
  • Loading branch information
0xyaco committed Sep 16, 2024
1 parent e77f764 commit 52b6a9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/automated-dispute/src/services/eboProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class EboProcessor {
* @returns the current epoch properties of the protocol chain.
*/
private async getCurrentEpoch(): Promise<Epoch> {
this.logger.info("Fetching current epoch start block...");
this.logger.info("Fetching current epoch...");

const currentEpoch = await this.protocolProvider.getCurrentEpoch();

Expand Down Expand Up @@ -307,7 +307,7 @@ export class EboProcessor {

const epochChainRequests = unhandledEpochChain.map(async (chain) => {
try {
this.logger.info(`Creating request for chain ${chain} and epoch ${epoch}`);
this.logger.info(`Creating request for chain ${chain} and epoch ${epoch}...`);

await this.protocolProvider.createRequest(epoch, [chain]);

Expand Down

0 comments on commit 52b6a9a

Please sign in to comment.