From c780558e08a924a9cbfa6a27aeb858a60052fd94 Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Fri, 23 Nov 2018 11:33:24 +1300 Subject: [PATCH] Fix lint error --- graphql/grahpql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql/grahpql.go b/graphql/grahpql.go index b16271e6d5..fce78a8d1b 100644 --- a/graphql/grahpql.go +++ b/graphql/grahpql.go @@ -913,7 +913,7 @@ func (r *Resolver) EstimateGas(ctx context.Context, args struct { } gas, err := ethapi.DoEstimateGas(ctx, r.backend, args.Data, blockNumber) - return hexutil.Uint64(gas), err + return gas, err } // FilterCritera encapsulates the arguments to `logs` on the root resolver object.