Whoops
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
Alex 2022-06-06 14:09:17 +02:00
parent 0ab21e780e
commit 17918e2ef5
Signed by: lx
GPG key ID: 0E496D15096376BE
2 changed files with 2 additions and 2 deletions

View file

@ -243,7 +243,7 @@ where
pub(crate) fn delete_if_equal(self: &Arc<Self>, k: &[u8], v: &[u8]) -> Result<bool, Error> { pub(crate) fn delete_if_equal(self: &Arc<Self>, k: &[u8], v: &[u8]) -> Result<bool, Error> {
let removed = self.store.db().transaction(|mut tx| { let removed = self.store.db().transaction(|mut tx| {
let remove = matches!(tx.get(&self.store, k)?, Some(cur_v) if cur_v == v => true); let remove = matches!(tx.get(&self.store, k)?, Some(cur_v) if cur_v == v);
if remove { if remove {
tx.remove(&self.store, k)?; tx.remove(&self.store, k)?;
tx.insert(&self.merkle_todo, k, vec![])?; tx.insert(&self.merkle_todo, k, vec![])?;

View file

@ -384,7 +384,7 @@ impl GcTodoEntry {
let key = self.todo_table_key(); let key = self.todo_table_key();
gc_todo_tree.db().transaction(|mut tx| { gc_todo_tree.db().transaction(|mut tx| {
let remove = let remove =
matches!(tx.get(gc_todo_tree, &key)? Some(ov) if ov == self.value_hash.as_slice()); matches!(tx.get(gc_todo_tree, &key)?, Some(ov) if ov == self.value_hash.as_slice());
if remove { if remove {
tx.remove(gc_todo_tree, &key)?; tx.remove(gc_todo_tree, &key)?;
} }