(input string)
| 79 | ) |
| 80 | |
| 81 | func newBadRequestError(input string) *httpError { |
| 82 | return &httpError{ |
| 83 | Code: http.StatusBadRequest, |
| 84 | Message: input, |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | func parseVersionedHashes(r *http.Request) ([]common.Hash, *httpError) { |
| 89 | query := r.URL.Query() |
no outgoing calls