about summary refs log tree commit diff
path: root/tvix/store/src/blobservice/sled.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/store/src/blobservice/sled.rs')
-rw-r--r--tvix/store/src/blobservice/sled.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/tvix/store/src/blobservice/sled.rs b/tvix/store/src/blobservice/sled.rs
index c229f799de..0f9d8671a8 100644
--- a/tvix/store/src/blobservice/sled.rs
+++ b/tvix/store/src/blobservice/sled.rs
@@ -86,13 +86,13 @@ impl io::Write for SledBlobWriter {
 impl BlobWriter for SledBlobWriter {
     fn close(self) -> Result<[u8; 32], Error> {
         let digest = self.hasher.finalize();
-        self.db.insert(digest.as_bytes(), self.buf).map_err(|e| {
-            Error::StorageError(format!("unable to insert blob: {}", e.to_string()))
-        })?;
+        self.db
+            .insert(digest.as_bytes(), self.buf)
+            .map_err(|e| Error::StorageError(format!("unable to insert blob: {}", e)))?;
 
-        Ok(digest
+        digest
             .to_owned()
             .try_into()
-            .map_err(|_| Error::StorageError("invalid digest length in response".to_string()))?)
+            .map_err(|_| Error::StorageError("invalid digest length in response".to_string()))
     }
 }