Skip to content

Commit

Permalink
Fixed pagination for shared closed orders usd futures
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Oct 4, 2024
1 parent 5dd16fa commit 731415d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ async Task<ExchangeWebResult<IEnumerable<SharedFuturesOrder>>> IFuturesOrderRest
UpdateTime = x.UpdateTime,
PositionSide = x.PositionSide == PositionSide.Both ? null : x.PositionSide == PositionSide.Long ? SharedPositionSide.Long : SharedPositionSide.Short,
ReduceOnly = x.ReduceOnly
}).ToArray());
}).ToArray(), nextToken);
}

EndpointOptions<GetOrderTradesRequest> IFuturesOrderRestClient.GetFuturesOrderTradesOptions { get; } = new EndpointOptions<GetOrderTradesRequest>(true);
Expand Down

0 comments on commit 731415d

Please sign in to comment.