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

Function wallet_invreq_id_first

wallet/wallet.c:6254–6262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6252}
6253
6254struct db_stmt *wallet_invreq_id_first(struct wallet *w, struct sha256 *invreq_id)
6255{
6256 struct db_stmt *stmt;
6257
6258 stmt = db_prepare_v2(w->db, SQL("SELECT invreq_id FROM invoicerequests;"));
6259 db_query_prepared(stmt);
6260
6261 return wallet_invreq_id_next(w, stmt, invreq_id);
6262}
6263
6264struct db_stmt *wallet_invreq_id_next(struct wallet *w,
6265 struct db_stmt *stmt,

Callers 1

json_listinvoicerequestsFunction · 0.85

Calls 2

db_query_preparedFunction · 0.85
wallet_invreq_id_nextFunction · 0.85

Tested by

no test coverage detected