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

Function db_bind_u64

db/bindings.c:72–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72void db_bind_u64(struct db_stmt *stmt, u64 val)
73{
74 size_t pos = check_bind_pos(stmt);
75
76 memcheck(&val, sizeof(val));
77 stmt->bindings[pos].type = DB_BINDING_UINT64;
78 stmt->bindings[pos].v.u64 = val;
79}
80
81void db_bind_s64(struct db_stmt *stmt, s64 val)
82{

Calls 1

check_bind_posFunction · 0.85

Tested by 3

count_inflightsFunction · 0.68
mainFunction · 0.68
count_movesFunction · 0.68