aboutsummaryrefslogtreecommitdiff
path: root/src/bayou.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bayou.rs')
-rw-r--r--src/bayou.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bayou.rs b/src/bayou.rs
index 3c525b3..1361e49 100644
--- a/src/bayou.rs
+++ b/src/bayou.rs
@@ -352,7 +352,7 @@ impl<S: BayouState> Bayou<S> {
storage::BlobRef(format!("{}/checkpoint/{}", self.path, ts_cp.to_string())),
cryptoblob.into(),
);
- self.storage.blob_insert(&blob_val).await?;
+ self.storage.blob_insert(blob_val).await?;
// Drop old checkpoints (but keep at least CHECKPOINTS_TO_KEEP of them)
let ecp_len = existing_checkpoints.len();