MCPcopy Create free account
hub / github.com/ElementsProject/lightning / rpc_enable_batching

Function rpc_enable_batching

plugins/libplugin.c:648–661  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

646}
647
648void rpc_enable_batching(struct plugin *plugin)
649{
650 const char *p;
651 struct json_out *params;
652
653 params = json_out_new(NULL);
654 json_out_start(params, NULL, '{');
655 json_out_add(params, "enable", false, "true");
656 json_out_end(params, '}');
657 json_out_finished(params);
658
659 /* We don't actually care about (empty) response */
660 sync_req(tmpctx, plugin, "batching", take(params), &p);
661}
662
663static struct command_result *datastore_fail(struct command *command,
664 const char *buf,

Callers 1

initFunction · 0.85

Calls 6

json_out_newFunction · 0.85
json_out_startFunction · 0.85
json_out_addFunction · 0.85
json_out_endFunction · 0.85
json_out_finishedFunction · 0.85
sync_reqFunction · 0.85

Tested by

no test coverage detected