Skip to content

Commit

Permalink
fix: no self
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarranzav committed Jul 28, 2023
1 parent 5a38a4f commit c4002df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/indexer-common/src/allocations/query-fees.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,8 @@ export class AllocationReceiptCollector implements ReceiptCollector {
}

private startVoucherProcessing() {
const self = this
timer(30_000).pipe(async () => {
if (self.stop) {
if (this.stop) {
return
}
const pendingVouchers = await this.pendingVouchers() // Ordered by value
Expand Down

0 comments on commit c4002df

Please sign in to comment.