We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 107c7ec commit da4c2caCopy full SHA for da4c2ca
lightningd/plugin.c
@@ -1551,9 +1551,7 @@ const char *plugin_send_getmanifest(struct plugin *p)
1551
p->stdin_conn = io_new_conn(p, stdinfd, plugin_stdin_conn_init, p);
1552
req = jsonrpc_request_start(p, "getmanifest", p->log,
1553
NULL, plugin_manifest_cb, p);
1554
- /* Adding allow-deprecated-apis is part of the deprecation cycle! */
1555
- if (!deprecated_apis)
1556
- json_add_bool(req->stream, "allow-deprecated-apis", deprecated_apis);
+ json_add_bool(req->stream, "allow-deprecated-apis", deprecated_apis);
1557
jsonrpc_request_end(req);
1558
plugin_request_send(p, req);
1559
p->plugin_state = AWAITING_GETMANIFEST_RESPONSE;
0 commit comments