Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentwschau committed Oct 24, 2023
1 parent bfd4222 commit b4079d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions indexer/services/vulcan/src/handlers/order-place-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,11 +364,11 @@ export class OrderPlaceHandler extends Handler {
orderId: string,
): Promise<void> {
const cachedOrderUpdate: OrderUpdateV1 | undefined = await StatefulOrderUpdatesCache
.removeStatefulOrderUpdate(
orderId,
Date.now(),
redisClient,
);
.removeStatefulOrderUpdate(
orderId,
Date.now(),
redisClient,
);

if (cachedOrderUpdate === undefined) {
return;
Expand Down

0 comments on commit b4079d1

Please sign in to comment.