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

Function db_bind_talarr

db/bindings.c:234–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232}
233
234void db_bind_talarr(struct db_stmt *stmt, int col, const u8 *arr)
235{
236 if (!arr)
237 db_bind_null(stmt, col);
238 else
239 db_bind_blob(stmt, col, arr, tal_bytelen(arr));
240}
241
242static size_t db_column_bytes(struct db_stmt *stmt, int col)
243{

Callers 11

wallet_channel_saveFunction · 0.85
wallet_htlc_updateFunction · 0.85
wallet_utxoset_addFunction · 0.85
wallet_filteredblock_addFunction · 0.85
wallet_datastore_updateFunction · 0.85
wallet_datastore_createFunction · 0.85
invoices_createFunction · 0.85
db_bind_txFunction · 0.85
db_bind_onionreplyFunction · 0.85

Calls 3

db_bind_nullFunction · 0.85
db_bind_blobFunction · 0.85
tal_bytelenFunction · 0.85

Tested by

no test coverage detected