Skip to content

Commit

Permalink
chore: pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
nvtaveras committed Dec 20, 2024
1 parent 1f186b3 commit dc99d52
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/reporters/block_based_reporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,9 @@ export class BlockBasedReporter extends BaseReporter {
// throw Error(
// `Block number is lower than the highest previously observed block: ${blockHeader.number} <= ${this.highestObservedBlockNumber}`
// )
this.logger.warn(`New Block number (${blockHeader.number}) is lower than the highest previously observed block (${this.highestObservedBlockNumber})`)
this.logger.warn(
`New Block number (${blockHeader.number}) is lower than the highest previously observed block (${this.highestObservedBlockNumber})`
)
}
const now = Date.now()
// now is in ms, and blockHeader.timestamp is in seconds, so we convert it to ms
Expand Down

0 comments on commit dc99d52

Please sign in to comment.