Skip to content

Commit 3073a99

Browse files
committed
reenable hashing
1 parent a20ca56 commit 3073a99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/plasma/client.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ Status PlasmaClient::Hash(const ObjectID& object_id, uint8_t* digest) {
466466
return Status::PlasmaObjectNonexistent("Object not found");
467467
}
468468
// Compute the hash.
469-
uint64_t hash = 0; //compute_object_hash(object_buffer);
469+
uint64_t hash = compute_object_hash(object_buffer);
470470
memcpy(digest, &hash, sizeof(hash));
471471
// Release the plasma object.
472472
return Release(object_id);

0 commit comments

Comments
 (0)