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

Function rpc_scan_datastore_hex

plugins/libplugin.c:635–646  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

633
634/* This variant scans the hex encoding, not the string */
635bool rpc_scan_datastore_hex(struct plugin *plugin,
636 const char *path,
637 ...)
638{
639 bool ret;
640 va_list ap;
641
642 va_start(ap, path);
643 ret = rpc_scan_datastore(plugin, path, "hex", ap);
644 va_end(ap);
645 return ret;
646}
647
648void rpc_enable_batching(struct plugin *plugin)
649{

Callers 1

initFunction · 0.85

Calls 1

rpc_scan_datastoreFunction · 0.85

Tested by

no test coverage detected