Skip to content

Commit

Permalink
Fix import ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
adamfraser committed Aug 19, 2024
1 parent 0afa13f commit e2b14ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import {
} from '@dydxprotocol-indexer/v4-protos';
import Long from 'long';
import * as pg from 'pg';
import { sendOrderFilledNotification } from 'src/helpers/notifications/notifications-functions';

import { STATEFUL_ORDER_ORDER_FILL_EVENT_TYPE, SUBACCOUNT_ORDER_FILL_EVENT_TYPE } from '../../constants';
import { annotateWithPnl, convertPerpetualPosition } from '../../helpers/kafka-helper';
Expand All @@ -35,7 +36,6 @@ import { orderFillWithLiquidityToOrderFillEventWithOrder } from '../../helpers/t
import { OrderFillWithLiquidity } from '../../lib/translated-types';
import { ConsolidatedKafkaEvent, OrderFillEventWithOrder } from '../../lib/types';
import { AbstractOrderFillHandler } from './abstract-order-fill-handler';
import { sendOrderFilledNotification } from 'src/helpers/notifications/notifications-functions';

export class OrderHandler extends AbstractOrderFillHandler<OrderFillWithLiquidity> {
eventType: string = 'OrderFillEvent';
Expand Down

0 comments on commit e2b14ba

Please sign in to comment.