Hi, I recently updated to v2.3.2 and noticed that my JSONRPC calls were failing with a message of "argument after ** must be a mapping, not str". After investigating some changes in the versions I noticed that in tools.py, in the serve_jsonrpc() function, the following line changed from:
s = methods[method](*params) to s = methods[method](**params) I changed it back and everything works perfectly now. Is this a bug or am I doing something incorrectly? Thanks, Mike --