Fix typo in ixdb key-value store implementation
This commit is contained in:
parent
730ea70975
commit
f958eea305
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ impl Transaction {
|
|||
return Err(Error::TxReadonly);
|
||||
}
|
||||
// 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
|
||||
Ok(res)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue