Skip to content

Commit 8e43b77

Browse files
committed
fix: prettier formatting
1 parent 55d740f commit 8e43b77

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

sdk/src/accounts/grpcDriftClientAccountSubscriberV2.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,8 @@ export class grpcDriftClientAccountSubscriberV2
694694
// Build array of perp market pubkeys to remove
695695
const perpMarketPubkeysToRemove = perpMarketIndexes
696696
.map((marketIndex) => {
697-
const pubkeyString = this.perpMarketIndexToAccountPubkeyMap.get(marketIndex);
697+
const pubkeyString =
698+
this.perpMarketIndexToAccountPubkeyMap.get(marketIndex);
698699
return pubkeyString ? new PublicKey(pubkeyString) : null;
699700
})
700701
.filter((pubkey) => pubkey !== null) as PublicKey[];
@@ -704,7 +705,9 @@ export class grpcDriftClientAccountSubscriberV2
704705

705706
// Remove accounts in batches - perp markets
706707
if (perpMarketPubkeysToRemove.length > 0) {
707-
await this.perpMarketsSubscriber.removeAccounts(perpMarketPubkeysToRemove);
708+
await this.perpMarketsSubscriber.removeAccounts(
709+
perpMarketPubkeysToRemove
710+
);
708711
}
709712

710713
// Remove accounts in batches - oracles

0 commit comments

Comments
 (0)