Bitcoin RPC return message like this - Nonzero exit code: 3
Could you please recommend link with all "Nonzero exit code: 3" for bitcoin ?
Thanks!
you can find all rpc error codes in src/rpc/protocol.h
Thanks, yes, but how about detailed description ?
for example
RPC_TYPE_ERROR = -3, //! Unexpected type was passed as parameter
Can I find more details about error code ?
this error means you used a wrong/unexpected parameter type. but this RPC_TYPE_ERROR can happen in different cases. only to name 2 of them: "Invalid address", "Invalid amount for send", ...
like grue said already - you have to post the parameter you used and the corresponding rpc method. without this information we can not help you further.