Skip to content

Commit

Permalink
Merge pull request #120 from MacroChip/main
Browse files Browse the repository at this point in the history
Fix areOrdersScoring return type
  • Loading branch information
poly-rodr authored Aug 12, 2024
2 parents 45aa0d0 + 0d71b81 commit 324416b
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 324416b

Please sign in to comment.