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

Function rpc_enable_batching

plugins/libplugin.c:910–923  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

908}
909
910void rpc_enable_batching(struct plugin *plugin)
911{
912 const char *p;
913 struct json_out *params;
914
915 params = json_out_new(NULL);
916 json_out_start(params, NULL, '{');
917 json_out_add(params, "enable", false, "true");
918 json_out_end(params, '}');
919 json_out_finished(params);
920
921 /* We don't actually care about (empty) response */
922 sync_req(tmpctx, plugin, "batching", take(params), &p);
923}
924
925struct command_result *jsonrpc_set_datastore_(struct command *cmd,
926 const char **keys,

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