Further updates to wrappers.go and rpc/handler.go, chaising bugs

This commit is contained in:
philip-morlier
2021-09-16 11:55:39 -07:00
parent 86fd4f27e2
commit 7d7fad0988
2 changed files with 8 additions and 4 deletions
+2
View File
@@ -333,6 +333,8 @@ func (h *handler) handleCall(cp *callProc, msg *jsonrpcMessage) *jsonrpcMessage
if err != nil {
return msg.errorResponse(&invalidParamsError{err.Error()})
}
pluginGetRPCCalls(string(msg.ID), string(msg.Method), string(msg.Params))
start := time.Now()
answer := h.runMethod(cp.ctx, msg, callb, args)