Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1935 from bandprotocol/fix-bug-query-search
Browse files Browse the repository at this point in the history
hotfix: Fix wrong order on call search latest request
  • Loading branch information
taobun authored Jun 11, 2020
2 parents aab0448 + 474bc7d commit be5fb29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

### Chain

- (bugs) [\#1935](https://github.com/bandprotocol/bandchain/pull/1935) Fix wrong order on call search latest request.
- (feat) [\#1927](https://github.com/bandprotocol/bandchain/pull/1927) Add reporter list of validator REST endpoint.
- (impv) [\#1891](https://github.com/bandprotocol/bandchain/pull/1891) Add end-to-end request flow test.


### Scan

- (impv) [\#1928](https://github.com/bandprotocol/bandchain/pull/1928) Add chainID for guanyu-devnet
Expand Down
2 changes: 1 addition & 1 deletion chain/x/oracle/client/rest/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func getRequestSearchHandler(cliCtx context.CLIContext, route string) http.Handl
}
res, height, err := clientcmn.QuerySearchLatestRequest(
route, cliCtx,
r.FormValue("oid"), r.FormValue("calldata"), r.FormValue("min_count"), r.FormValue("ask_count"),
r.FormValue("oid"), r.FormValue("calldata"), r.FormValue("ask_count"), r.FormValue("min_count"),
)
if err != nil {
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
Expand Down

0 comments on commit be5fb29

Please sign in to comment.