Skip to content

Commit

Permalink
Merge pull request #1076 from multiversx/development
Browse files Browse the repository at this point in the history
Development to main
  • Loading branch information
danielailie authored Jul 25, 2024
2 parents 37d3446 + 8c9738f commit 2005f85
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class ElasticUpdatesEventsService {
private readonly documentDbService: DocumentDbService,
private readonly redisCacheService: RedisCacheService,
private readonly mxApiService: MxApiService,
) {}
) { }

public async handleNftMintEvents(mintEvents: any[], hash: string): Promise<void> {
await new Promise((resolve) => setTimeout(resolve, 10000));
Expand Down Expand Up @@ -111,7 +111,7 @@ export class ElasticUpdatesEventsService {
}

public async handleScamInfoForNftMintBurnAndUpdateEvents(mintEvents: any[]): Promise<void> {
await new Promise((resolve) => setTimeout(resolve, 5000));
await new Promise((resolve) => setTimeout(resolve, 10000));

let nftsToUpdate: Asset[] = [];
let nftsToDelete: string[] = [];
Expand Down

0 comments on commit 2005f85

Please sign in to comment.