diff --git a/util/src/kvdb.rs b/util/src/kvdb.rs
index 921e8b3c4..23784c200 100644
--- a/util/src/kvdb.rs
+++ b/util/src/kvdb.rs
@@ -31,12 +31,12 @@ impl DBTransaction {
}
/// Insert a key-value pair in the transaction. Any existing value value will be overwritten upon write.
- pub fn put(&self, key: &[u8], value: &[u8]) -> Result<(), String> {
+ pub fn put(&self, key: &[u8], value: &[u8]) -> Result<(), String> {
self.batch.put(key, value)
}
/// Delete value by key.
- pub fn delete(&self, key: &[u8]) -> Result<(), String> {
+ pub fn delete(&self, key: &[u8]) -> Result<(), String> {
self.batch.delete(key)
}
}
@@ -49,14 +49,14 @@ pub struct DatabaseConfig {
/// Database iterator
pub struct DatabaseIterator<'a> {
- iter: DBIterator<'a>,
+ iter: DBIterator<'a>,
}
impl<'a> Iterator for DatabaseIterator<'a> {
- type Item = (Box<[u8]>, Box<[u8]>);
+ type Item = (Box<[u8]>, Box<[u8]>);
#[allow(type_complexity)]
- fn next(&mut self) -> Option<(Box<[u8]>, Box<[u8]>)> {
+ fn next(&mut self) -> Option<(Box<[u8]>, Box<[u8]>)> {
self.iter.next()
}
}
@@ -94,7 +94,8 @@ impl Database {
opts.set_max_background_compactions(4);
opts.set_max_background_flushes(4);
opts.set_filter_deletes(false);
- opts.set_disable_auto_compactions(false);*/
+ opts.set_disable_auto_compactions(false);
+ */
if let Some(size) = config.prefix_size {
let mut block_opts = BlockBasedOptions::new();
@@ -107,27 +108,27 @@ impl Database {
}
/// Insert a key-value pair in the transaction. Any existing value value will be overwritten.
- pub fn put(&self, key: &[u8], value: &[u8]) -> Result<(), String> {
+ pub fn put(&self, key: &[u8], value: &[u8]) -> Result<(), String> {
self.db.put(key, value)
}
/// Delete value by key.
- pub fn delete(&self, key: &[u8]) -> Result<(), String> {
+ pub fn delete(&self, key: &[u8]) -> Result<(), String> {
self.db.delete(key)
}
/// Commit transaction to database.
- pub fn write(&self, tr: DBTransaction) -> Result<(), String> {
+ pub fn write(&self, tr: DBTransaction) -> Result<(), String> {
self.db.write(tr.batch)
}
/// Get value by key.
- pub fn get(&self, key: &[u8]) -> Result