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

Function rpc_scan_datastore_str

plugins/libplugin.c:881–893  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

879}
880
881const char *rpc_scan_datastore_str(const tal_t *ctx,
882 struct command *cmd,
883 const char **keys,
884 ...)
885{
886 const char *ret;
887 va_list ap;
888
889 va_start(ap, keys);
890 ret = rpc_scan_datastore(ctx, cmd, keys, "string", ap);
891 va_end(ap);
892 return ret;
893}
894
895/* This variant scans the hex encoding, not the string */
896const char *rpc_scan_datastore_hex(const tal_t *ctx,

Callers 2

initFunction · 0.85
initFunction · 0.85

Calls 1

rpc_scan_datastoreFunction · 0.85

Tested by 1

initFunction · 0.68