Skip to content

Commit

Permalink
Fix areOrdersScoring return type
Browse files Browse the repository at this point in the history
  • Loading branch information
chip committed Aug 8, 2024
1 parent 45aa0d0 commit 0d71b81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import {
TickSizes,
TickSize,
OrdersScoringParams,
OrdersScoring,
PriceHistoryFilterParams,
PaginationPayload,
MarketTradeEvent,
Expand Down Expand Up @@ -735,7 +736,7 @@ export class ClobClient {
return this.get(`${this.host}${endpoint}`, { headers, params });
}

public async areOrdersScoring(params?: OrdersScoringParams): Promise<OrderScoring> {
public async areOrdersScoring(params?: OrdersScoringParams): Promise<OrdersScoring> {
this.canL2Auth();

const endpoint = ARE_ORDERS_SCORING;
Expand Down

0 comments on commit 0d71b81

Please sign in to comment.