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

Function run_bitcoin_cli

plugins/bcli.c:229–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227}
228
229static LAST_ARG_NULL struct bcli_result *
230run_bitcoin_cli(const tal_t *ctx,
231 struct plugin *plugin,
232 const char *method, ...)
233{
234 va_list ap;
235 struct bcli_result *res;
236
237 va_start(ap, method);
238 res = run_bitcoin_cliv(ctx, plugin, method, ap);
239 va_end(ap);
240
241 return res;
242}
243
244static void strip_trailing_whitespace(char *str, size_t len)
245{

Callers 7

get_fullnode_peersFunction · 0.85
getrawblockbyheightFunction · 0.85
getchaininfoFunction · 0.85
get_feerate_floorFunction · 0.85
get_feerateFunction · 0.85
sendrawtransactionFunction · 0.85
getutxoutFunction · 0.85

Calls 1

run_bitcoin_clivFunction · 0.85

Tested by

no test coverage detected