Rename object_db to clean_db

This commit is contained in:
Vitaliy Filippov
2019-11-10 22:41:40 +03:00
parent 69581e6d0c
commit ff57dd420e
5 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ void blockstore::enqueue_write(blockstore_operation *op)
}
else
{
auto clean_it = object_db.find(op->oid);
if (clean_it != object_db.end())
auto clean_it = clean_db.find(op->oid);
if (clean_it != clean_db.end())
{
op->version = clean_it->second.version + 1;
}