Skip to content

Commit f1bda1c

Browse files
committed
f Don't be lazy
1 parent d9b124e commit f1bda1c

File tree

1 file changed

+1
-1
lines changed
  • lightning-persister/src/sqlite_store

1 file changed

+1
-1
lines changed

lightning-persister/src/sqlite_store/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ impl KVStore for SqliteStore {
150150
})
151151
}
152152

153-
fn remove(&self, namespace: &str, sub_namespace: &str, key: &str, lazy: bool) -> std::io::Result<()> {
153+
fn remove(&self, namespace: &str, sub_namespace: &str, key: &str, _lazy: bool) -> std::io::Result<()> {
154154
check_namespace_key_validity(namespace, sub_namespace, Some(key), "remove")?;
155155

156156
let locked_conn = self.connection.lock().unwrap();

0 commit comments

Comments
 (0)