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

Function db_bind_u64

db/bindings.c:68–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68void db_bind_u64(struct db_stmt *stmt, int pos, u64 val)
69{
70 memcheck(&val, sizeof(val));
71 assert(pos < tal_count(stmt->bindings));
72 stmt->bindings[pos].type = DB_BINDING_UINT64;
73 stmt->bindings[pos].v.u64 = val;
74}
75
76void db_bind_blob(struct db_stmt *stmt, int pos, const u8 *val, size_t len)
77{

Callers 15

wallet_add_utxoFunction · 0.85
wallet_find_utxoFunction · 0.85
wallet_add_onchaind_utxoFunction · 0.85
wallet_shachain_initFunction · 0.85
wallet_shachain_add_hashFunction · 0.85
wallet_shachain_loadFunction · 0.85
wallet_peer_loadFunction · 0.85
wallet_htlc_sigs_loadFunction · 0.85

Calls

no outgoing calls

Tested by 1

count_inflightsFunction · 0.68