Merge pull request #20046 from karalabe/graphql-fix-web-and-decoding
common, graphql: fix hash/address decoding + UI content type
This commit is contained in:
		
						commit
						4f6bf2f1c5
					
				| @ -149,7 +149,7 @@ func (h *Hash) UnmarshalGraphQL(input interface{}) error { | |||||||
| 	var err error | 	var err error | ||||||
| 	switch input := input.(type) { | 	switch input := input.(type) { | ||||||
| 	case string: | 	case string: | ||||||
| 		*h = HexToHash(input) | 		err = h.UnmarshalText([]byte(input)) | ||||||
| 	default: | 	default: | ||||||
| 		err = fmt.Errorf("Unexpected type for Bytes32: %v", input) | 		err = fmt.Errorf("Unexpected type for Bytes32: %v", input) | ||||||
| 	} | 	} | ||||||
| @ -288,7 +288,7 @@ func (a *Address) UnmarshalGraphQL(input interface{}) error { | |||||||
| 	var err error | 	var err error | ||||||
| 	switch input := input.(type) { | 	switch input := input.(type) { | ||||||
| 	case string: | 	case string: | ||||||
| 		*a = HexToAddress(input) | 		err = a.UnmarshalText([]byte(input)) | ||||||
| 	default: | 	default: | ||||||
| 		err = fmt.Errorf("Unexpected type for Address: %v", input) | 		err = fmt.Errorf("Unexpected type for Address: %v", input) | ||||||
| 	} | 	} | ||||||
|  | |||||||
| @ -52,7 +52,7 @@ func (h GraphiQL) ServeHTTP(w http.ResponseWriter, r *http.Request) { | |||||||
| 		respond(w, errorJSON("only GET requests are supported"), http.StatusMethodNotAllowed) | 		respond(w, errorJSON("only GET requests are supported"), http.StatusMethodNotAllowed) | ||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
| 
 | 	w.Header().Set("Content-Type", "text/html") | ||||||
| 	w.Write(graphiql) | 	w.Write(graphiql) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user