From 84874ac2d8b6f708cdbc1b1b00b4ea74b675593f Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Fri, 19 Oct 2018 09:14:59 +0100 Subject: [PATCH] Update common/types.go Co-Authored-By: Arachnid --- common/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/types.go b/common/types.go index 251dd84593..cf61ec66c5 100644 --- a/common/types.go +++ b/common/types.go @@ -289,7 +289,7 @@ func (a *Address) UnmarshalGraphQL(input interface{}) error { case string: *a = HexToAddress(input) default: - err = fmt.Errorf("Unexpected type for Hash: %v", input) + err = fmt.Errorf("Unexpected type for Address: %v", input) } return err }