Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
LIGHTNING-DEPRECATIONS(7)			     LIGHTNING-DEPRECATIONS(7)

NAME
       lightning-deprecations -- Command to enable/disable deprecated APIs

SYNOPSIS
       deprecations enable

DESCRIPTION
       Command added in	v24.02.

       The  deprecations  RPC command is used to override global config	option
       allow-deprecated-apis for further RPC commands on this same connection.
       This can	be useful for developer	testing	to ensure you  don't  acciden-
       tally rely on deprecated	features.

         enable (boolean): Flag to enable or disable deprecated APIs. Setting
	  it  to  false	will neither accept deprecated parameters or commands,
	  nor output deprecated	fields.

RETURN VALUE
       On success, an empty object is returned.

ERRORS
       On failure, one of the following	error codes may	be returned:

         -32602: Error	in given parameters.

AUTHOR
       Rusty Russell <<rusty@blockstream.com>> wrote the  initial  version  of
       this man	page.

SEE ALSO
       lightningd-config(5), lightning-notifications(7)

RESOURCES
       Main web	site: <https://github.com/ElementsProject/lightning>

EXAMPLES
       Example 1:

       Request:

       $ lightning-cli deprecations -k "enable"=True

       {
	 "id": "example:deprecations#1",
	 "method": "deprecations",
	 "params": {
	   "enable": true
	 }
       }

       Response:

       {}

       Example 2:

       Request:

       $ lightning-cli deprecations -k "enable"=False

       {
	 "id": "example:deprecations#2",
	 "method": "deprecations",
	 "params": {
	   "enable": false
	 }
       }

       Response:

       {}

Core Lightning v25.02				     LIGHTNING-DEPRECATIONS(7)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=lightning-deprecations&sektion=7&manpath=FreeBSD+Ports+14.3.quarterly>

home | help