Skip to content

Commit

Permalink
chore: fixed sonar lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Kammerlo committed Jul 26, 2024
1 parent 840caf1 commit 52d0521
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/api-cardano-db-hasura/src/ChainFollower.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ export class ChainFollower {
}
this.logger.info({ module: MODULE_NAME }, 'Starting')
await this.queue.start()
//slot added so that ogmios does not start from origin, instead start just before the asset minting started
points = [{
// slot added so that ogmios does not start from origin, instead start just before the asset minting started
points = [{
slot: 23068800,
id: "a650a3f398ba4a9427ec8c293e9f7156d81fd2f7ca849014d8d2c1156c359b3a"
}];
id: 'a650a3f398ba4a9427ec8c293e9f7156d81fd2f7ca849014d8d2c1156c359b3a'
}]
await this.chainSyncClient.resume(points)
this.state = 'running'
this.logger.info({ module: MODULE_NAME }, 'Started')
Expand Down

0 comments on commit 52d0521

Please sign in to comment.