Skip to content

Commit

Permalink
Merge pull request #1075 from multiversx/SERVICES-2510-scam-algorithm…
Browse files Browse the repository at this point in the history
…-mapping-dev

increase timeout
  • Loading branch information
danielailie authored Jul 25, 2024
2 parents 1d29cee + f2ae88a commit 8c9738f
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 8c9738f

Please sign in to comment.