Skip to content

Commit

Permalink
onflow#486 fix query param for getExecutionResults
Browse files Browse the repository at this point in the history
  • Loading branch information
treethought committed Oct 13, 2023
1 parent 25dcab0 commit fae71cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion access/http/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ func (h *httpHandler) getExecutionResults(
u := h.mustBuildURL("/execution_results", opts...)

q := u.Query()
q.Add("block_ids", strings.Join(blockIDs, ","))
q.Add("block_id", strings.Join(blockIDs, ","))
u.RawQuery = q.Encode()

var results []models.ExecutionResult
Expand Down

0 comments on commit fae71cf

Please sign in to comment.