Skip to content

Commit

Permalink
FIX: use correct query string for history time range
Browse files Browse the repository at this point in the history
  • Loading branch information
vinothkannans committed Dec 5, 2024
1 parent 69bebc3 commit b64bcef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Http/Balances/HistoryRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ protected function defaultQuery(): array
$query = parent::defaultQuery();

if (isset($this->from)) {
$query['from'] = $this->from;
$query['from_post_at'] = $this->from;
}

if (isset($this->to)) {
$query['to'] = $this->to;
$query['to_post_at'] = $this->to;
}

if (isset($this->page)) {
Expand Down

0 comments on commit b64bcef

Please sign in to comment.