Skip to content

Commit

Permalink
Fix GetUserTradesAsync (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
hromkes authored Jan 18, 2025
1 parent 38dd888 commit 830312a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public async Task<WebCallResult<IEnumerable<KrakenFuturesUserTrade>>> GetUserTra

var weight = startTime == null ? 2 : 25;
var request = _definitions.GetOrCreate(HttpMethod.Get, "derivatives/api/v3/fills", KrakenExchange.RateLimiter.FuturesApi, 1, true);
return await _baseClient.SendAsync<KrakenFuturesUserTradeResult, IEnumerable<KrakenFuturesUserTrade>>(request, null, ct).ConfigureAwait(false);
return await _baseClient.SendAsync<KrakenFuturesUserTradeResult, IEnumerable<KrakenFuturesUserTrade>>(request, parameters, ct).ConfigureAwait(false);
}

#endregion
Expand Down

0 comments on commit 830312a

Please sign in to comment.