mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
24 lines
756 B
C
24 lines
756 B
C
/* lightningd/jsonrpc_errors.h
|
|
* Lists error codes for JSON-RPC.
|
|
*/
|
|
#ifndef LIGHTNING_LIGHTNINGD_JSONRPC_ERRORS_H
|
|
#define LIGHTNING_LIGHTNINGD_JSONRPC_ERRORS_H
|
|
#include "config.h"
|
|
|
|
/* Standard errors defined by JSON-RPC 2.0 standard */
|
|
#define JSONRPC2_INVALID_REQUEST -32600
|
|
#define JSONRPC2_METHOD_NOT_FOUND -32601
|
|
#define JSONRPC2_INVALID_PARAMS -32602
|
|
|
|
/* Errors from `pay` and `sendpay` commands */
|
|
#define PAY_IN_PROGRESS 200
|
|
#define PAY_RHASH_ALREADY_USED 201
|
|
#define PAY_UNPARSEABLE_ONION 202
|
|
#define PAY_DESTINATION_PERM_FAIL 203
|
|
#define PAY_TRY_OTHER_ROUTE 204
|
|
#define PAY_ROUTE_NOT_FOUND 205
|
|
#define PAY_ROUTE_TOO_EXPENSIVE 206
|
|
#define PAY_INVOICE_EXPIRED 207
|
|
|
|
#endif /* !defined (LIGHTNING_LIGHTNINGD_JSONRPC_ERRORS_H) */
|