Skip to content

Commit

Permalink
Merge pull request #284 from CosmWasm/raw-query-returns-base64
Browse files Browse the repository at this point in the history
Base64 encoded return data on wasm raw query REST endpoint
  • Loading branch information
ethanfrey authored Oct 8, 2020
2 parents bc0c96f + 13169ab commit b30902f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/wasm/client/rest/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func queryContractStateRawHandlerFn(cliCtx context.CLIContext) http.HandlerFunc
return
}
cliCtx = cliCtx.WithHeight(height)
rest.PostProcessResponse(w, cliCtx, json.RawMessage(res))
rest.PostProcessResponse(w, cliCtx, res)
}
}

Expand Down

0 comments on commit b30902f

Please sign in to comment.