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

Function rpc_scan_datastore_str

plugins/libplugin.c:621–632  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

619}
620
621bool rpc_scan_datastore_str(struct plugin *plugin,
622 const char *path,
623 ...)
624{
625 bool ret;
626 va_list ap;
627
628 va_start(ap, path);
629 ret = rpc_scan_datastore(plugin, path, "string", ap);
630 va_end(ap);
631 return ret;
632}
633
634/* This variant scans the hex encoding, not the string */
635bool rpc_scan_datastore_hex(struct plugin *plugin,

Callers 2

initFunction · 0.85
initFunction · 0.85

Calls 1

rpc_scan_datastoreFunction · 0.85

Tested by

no test coverage detected