From c8c18ba7a451e79851439059d28292cf097344ab Mon Sep 17 00:00:00 2001 From: renaynay <41963722+renaynay@users.noreply.github.com> Date: Fri, 27 Mar 2020 09:28:12 +0100 Subject: [PATCH] fixed a typo in graphql service --- graphql/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql/service.go b/graphql/service.go index 70d75ae72f..80152c4f5d 100644 --- a/graphql/service.go +++ b/graphql/service.go @@ -35,7 +35,7 @@ type Service struct { cors []string // Allowed CORS domains vhosts []string // Recognised vhosts timeouts rpc.HTTPTimeouts // Timeout settings for HTTP requests. - backend ethapi.Backend // The backend that queries will operate onn. + backend ethapi.Backend // The backend that queries will operate on. handler http.Handler // The `http.Handler` used to answer queries. listener net.Listener // The listening socket. }