Files
lightning/common
Mark Beckwith 7f437715d5 Added error code parameter to command_fail
Until now, `command_fail()` reported an error code of -1 for all uses.
This PR adds an `int code` parameter to `command_fail()`, requiring the
caller to explicitly include the error code.

This is part of #1464.

The majority of the calls are used during parameter validation and
their error code is now JSONRPC2_INVALID_PARAMS.

The rest of the calls report an error code of LIGHTNINGD, which I defined to
-1 in `jsonrpc_errors.h`.  The intention here is that as we improve our error
reporting, all occurenaces of LIGHTNINGD will go away and we can eventually
remove it.

I also converted calls to `command_fail_detailed()` that took a `NULL` `data`
parameter to use the new `command_fail()`.

The only difference from an end user perspecive is that bad input errors that
used to be -1 will now be -32602 (JSONRPC2_INVALID_PARAMS).
2018-05-26 12:17:36 +02:00
..
2018-01-29 04:46:54 +00:00
2018-02-08 22:49:34 +01:00
2018-04-08 08:26:00 +00:00
2017-11-23 23:10:08 +01:00
2017-11-16 17:40:57 +01:00
2018-05-10 02:28:44 +00:00
2017-12-20 12:43:10 +01:00
2018-04-26 05:47:57 +00:00
2018-03-06 19:26:21 +01:00
2018-03-27 23:17:17 +00:00
2018-01-29 04:46:54 +00:00