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

Function rpc_scan_datastore_hex

plugins/libplugin.c:896–908  ·  view source on GitHub ↗

This variant scans the hex encoding, not the string */

Source from the content-addressed store, hash-verified

894
895/* This variant scans the hex encoding, not the string */
896const char *rpc_scan_datastore_hex(const tal_t *ctx,
897 struct command *cmd,
898 const char **keys,
899 ...)
900{
901 const char *ret;
902 va_list ap;
903
904 va_start(ap, keys);
905 ret = rpc_scan_datastore(ctx, cmd, keys, "hex", ap);
906 va_end(ap);
907 return ret;
908}
909
910void rpc_enable_batching(struct plugin *plugin)
911{

Callers 2

initFunction · 0.70
initFunction · 0.50

Calls 1

rpc_scan_datastoreFunction · 0.85

Tested by 1

initFunction · 0.40