You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary or problem description
Hi guys, working on neo-express. Ran into a problem where I am trying to get an error from RPC server. We use a custom express plugin to do this. However we are still using the core of RPC Server with add-ons of custom methods.
What the problem is, we are getting error Neo.Network.RPC.RpcException: Invalid params and I want to get the real error. Sure there is workarounds for this and I know this would make NeoGo node inconsistent with C# node.
Do you have any solution you want to propose?
That we have a setting in the config.json file to bypass this to show the full error.
{
"DebugMode": "true"
}
Where in the software does this update applies to?
Plugins
RPC (HTTP)
The text was updated successfully, but these errors were encountered:
I'd just implement #814 and that's it. Try the same requests for NeoGo nodes (https://status.fs.neo.org/ has some public ones), it returns much more data even for common "invalid params" codes (data field exists exactly for that). Nothing prevents C# node from doing the same.
Summary or problem description
Hi guys, working on
neo-express
. Ran into a problem where I am trying to get an error from RPC server. We use a custom express plugin to do this. However we are still using the core of RPC Server with add-ons of custom methods.the problem is:
neo-modules/src/RpcServer/RpcServer.cs
Lines 253 to 268 in 2d7fb27
What the problem is, we are getting error
Neo.Network.RPC.RpcException: Invalid params
and I want to get the real error. Sure there is workarounds for this and I know this would makeNeoGo
node inconsistent with C# node.Do you have any solution you want to propose?
That we have a setting in the
config.json
file to bypass this to show the full error.Where in the software does this update applies to?
The text was updated successfully, but these errors were encountered: