Skip to content
This repository was archived by the owner on Nov 15, 2021. It is now read-only.

Commit a9233ea

Browse files
authored
Update ExtendedJsonRpcApi.py
- add fix provided by @localhuman so original methods are returned as well as extended methods
1 parent 08e25ae commit a9233ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/api/JSONRPC/ExtendedJsonRpcApi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ def json_rpc_method_handler(self, method, params):
5858
else:
5959
raise JsonRpcError(-400, "Access denied.")
6060

61-
super(ExtendedJsonRpcApi, self).json_rpc_method_handler(method, params)
61+
return super(ExtendedJsonRpcApi, self).json_rpc_method_handler(method, params)

0 commit comments

Comments
 (0)