From a343c346e7bd8e3a8a93a70a8c887dbb0c85bb24 Mon Sep 17 00:00:00 2001 From: Nour Alharithi Date: Thu, 10 Jul 2025 11:52:06 -0700 Subject: [PATCH] prettify --- src/dlob-subscriber/DLOBSubscriberIO.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/dlob-subscriber/DLOBSubscriberIO.ts b/src/dlob-subscriber/DLOBSubscriberIO.ts index 2e8de5c..276c543 100644 --- a/src/dlob-subscriber/DLOBSubscriberIO.ts +++ b/src/dlob-subscriber/DLOBSubscriberIO.ts @@ -227,14 +227,12 @@ export class DLOBSubscriberIO extends DLOBSubscriber { }; if (quote['bid_size'] && quote['bid_price'] != null) { - // Sanity check bid price and size and change to top of book if necessary + // Sanity check bid price and size let indicativeBid: Order = Object.assign( {}, indicativeBaseOrder, { orderId: indicativeOrderId, - direction: PositionDirection.LONG, - baseAssetAmount: new BN(quote['bid_size']), oraclePriceOffset: quote['is_oracle_offset'] ? quote['bid_price'] : 0,