removed redundant mut from kvdb-memorydb
This commit is contained in:
parent
2ce0eae406
commit
fbad6b5514
@ -71,12 +71,12 @@ impl KeyValueDB for InMemory {
|
|||||||
for op in ops {
|
for op in ops {
|
||||||
match op {
|
match op {
|
||||||
DBOp::Insert { col, key, value } => {
|
DBOp::Insert { col, key, value } => {
|
||||||
if let Some(mut col) = columns.get_mut(&col) {
|
if let Some(col) = columns.get_mut(&col) {
|
||||||
col.insert(key.into_vec(), value);
|
col.insert(key.into_vec(), value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
DBOp::InsertCompressed { col, key, value } => {
|
DBOp::InsertCompressed { col, key, value } => {
|
||||||
if let Some(mut col) = columns.get_mut(&col) {
|
if let Some(col) = columns.get_mut(&col) {
|
||||||
let compressed = UntrustedRlp::new(&value).compress(RlpType::Blocks);
|
let compressed = UntrustedRlp::new(&value).compress(RlpType::Blocks);
|
||||||
let mut value = DBValue::new();
|
let mut value = DBValue::new();
|
||||||
value.append_slice(&compressed);
|
value.append_slice(&compressed);
|
||||||
@ -84,7 +84,7 @@ impl KeyValueDB for InMemory {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
DBOp::Delete { col, key } => {
|
DBOp::Delete { col, key } => {
|
||||||
if let Some(mut col) = columns.get_mut(&col) {
|
if let Some(col) = columns.get_mut(&col) {
|
||||||
col.remove(&*key);
|
col.remove(&*key);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user