Skip to content

Commit

Permalink
fixed time in GetKlinesAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
VozyakovAV committed Oct 25, 2024
1 parent 559c027 commit 4d4f814
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public async Task<WebCallResult<IEnumerable<CoinbaseKline>>> GetKlinesAsync(stri
{
var parameters = new ParameterCollection();
parameters.AddEnum("granularity", klineInterval);
parameters.AddOptionalMillisecondsString("start", startTime);
parameters.AddOptionalMillisecondsString("end", endTime);
parameters.AddOptionalSecondsString("start", startTime);
parameters.AddOptionalSecondsString("end", endTime);
parameters.AddOptional("limit", limit);

RequestDefinition request;
Expand Down

0 comments on commit 4d4f814

Please sign in to comment.