GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
LIGHTNING-CHECK(7) LIGHTNING-CHECK(7)

lightning-check -- Command for verifying parameters

check command_to_check

The check RPC command verifies another command without actually making any changes.

This is guaranteed to be safe, and will do all checks up to the point where something in the system would need to be altered (such as checking that channels are in the right state, peers connected, etc).

It does not guarantee successful execution of the command in all cases. For example, a call to lightning-getroute(7) may still fail to find a route even if checking the parameters succeeds.

command_to_check (string): Name of the relevant command.

On success, an object is returned, containing:

command_to_check (string): The command_to_check argument.

Mark Beckwith <wythe@intrig.com> and Rusty Russell <rusty@rustcorp.com.au> are mainly responsible.

Main web site: https://github.com/ElementsProject/lightning

Example 1:

Request:

$ lightning-cli check -k "command_to_check"="sendpay" "route"='[{"amount_msat": 1011, "id": "nodeid030303030303030303030303030303030303030303030303030303030303", "delay": 20, "channel": "123x1x1"}, {"amount_msat": 1000, "id": "nodeid040404040404040404040404040404040404040404040404040404040404", "delay": 10, "channel": "130x1x1"}]' "payment_hash"="0000000000000000000000000000000000000000000000000000000000000000"

{

"id": "example:check#1",
"method": "check",
"params": {
"command_to_check": "sendpay",
"route": [
{
"amount_msat": 1011,
"id": "nodeid030303030303030303030303030303030303030303030303030303030303",
"delay": 20,
"channel": "123x1x1"
},
{
"amount_msat": 1000,
"id": "nodeid040404040404040404040404040404040404040404040404040404040404",
"delay": 10,
"channel": "130x1x1"
}
],
"payment_hash": "0000000000000000000000000000000000000000000000000000000000000000"
} }

Response:

{

"command_to_check": "sendpay" }

Example 2:

Request:

$ lightning-cli check -k "command_to_check"="dev" "subcommand"="slowcmd" "msec"=1000

{

"id": "example:check#2",
"method": "check",
"params": {
"command_to_check": "dev",
"subcommand": "slowcmd",
"msec": 1000
} }

Response:

{

"command_to_check": "dev" }

Example 3:

Request:

$ lightning-cli check -k "command_to_check"="recover" "hsmsecret"="6c696768746e696e672d31000000000000000000000000000000000000000000"

{

"id": "example:check#3",
"method": "check",
"params": {
"command_to_check": "recover",
"hsmsecret": "6c696768746e696e672d31000000000000000000000000000000000000000000"
} }

Response:

{

"command_to_check": "recover" }
Core Lightning v25.02.2

Search for    or go to Top of page |  Section 7 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.