MCPcopy Create free account
hub / github.com/ElementsProject/elements / leveldb_create_snapshot

Function leveldb_create_snapshot

src/leveldb/db/c.cc:223–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221}
222
223const leveldb_snapshot_t* leveldb_create_snapshot(leveldb_t* db) {
224 leveldb_snapshot_t* result = new leveldb_snapshot_t;
225 result->rep = db->rep->GetSnapshot();
226 return result;
227}
228
229void leveldb_release_snapshot(leveldb_t* db,
230 const leveldb_snapshot_t* snapshot) {

Callers 1

mainFunction · 0.85

Calls 1

GetSnapshotMethod · 0.45

Tested by 1

mainFunction · 0.68