aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/http
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-02-11 18:56:29 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-02-11 18:56:29 +0800
commitd613bf69bf3fd0cfbe28a2f68c87421f7d5bccf9 (patch)
treee7d6589314ec1490c45adb2ac5b94423a250eb06 /rpc/http
parentcfddb7f3cd3b8cecb1e59412ce4db5769f6c8007 (diff)
downloaddexon-d613bf69bf3fd0cfbe28a2f68c87421f7d5bccf9.tar.gz
dexon-d613bf69bf3fd0cfbe28a2f68c87421f7d5bccf9.tar.zst
dexon-d613bf69bf3fd0cfbe28a2f68c87421f7d5bccf9.zip
#295 Allow RPC ID to be string
Diffstat (limited to 'rpc/http')
-rw-r--r--rpc/http/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/http/server.go b/rpc/http/server.go
index a34400a77..10c8fa813 100644
--- a/rpc/http/server.go
+++ b/rpc/http/server.go
@@ -102,7 +102,7 @@ func (s *RpcHttpServer) apiHandler(api *rpc.EthereumApi) http.Handler {
if reserr != nil {
rpchttplogger.Warnln(reserr)
jsonerr := &rpc.RpcErrorObject{-32603, reserr.Error()}
- JSON.Send(w, &rpc.RpcErrorResponse{JsonRpc: jsonrpcver, ID: &reqParsed.ID, Error: jsonerr})
+ JSON.Send(w, &rpc.RpcErrorResponse{JsonRpc: jsonrpcver, ID: reqParsed.ID, Error: jsonerr})
return
}