Fix lint error

This commit is contained in:
Nick Johnson 2018-11-23 11:33:24 +13:00
parent 202a1003ee
commit c780558e08

View file

@ -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.