Fix typo in ixdb key-value store implementation

This commit is contained in:
Tobie Morgan Hitchcock 2022-04-09 10:08:51 +01:00
parent 730ea70975
commit f958eea305

View file

@ -191,7 +191,7 @@ impl Transaction {
return Err(Error::TxReadonly); return Err(Error::TxReadonly);
} }
// Remove the key // Remove the key
let res = self.tx.del(key.into(), chk.map(|v| v.into())).await?; let res = self.tx.delc(key.into(), chk.map(|v| v.into())).await?;
// Return result // Return result
Ok(res) Ok(res)
} }