Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
danielailie committed Jul 25, 2024
1 parent 1d29cee commit f2ae88a
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 f2ae88a

Please sign in to comment.