Skip to content

Commit

Permalink
err.Error(0
Browse files Browse the repository at this point in the history
  • Loading branch information
rian committed May 16, 2024
1 parent 3d4654d commit fb0d9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsonrpc/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ func (s *Server) handleRequest(ctx context.Context, req *Request) (*response, er
args, err := s.buildArguments(ctx, req.Params, calledMethod)
if err != nil {
res.Error = Err(InvalidParams, err.Error())
s.log.Tracew("Error building arguments for RPC call", "error", err.Error())
s.log.Tracew("Error building arguments for RPC call", "err", err)
return res, nil
}
defer func() {
Expand Down

0 comments on commit fb0d9fd

Please sign in to comment.