Skip to content

Commit 2d0aaee

Browse files
committed
f Account for lazy flag in KVStore::remove
1 parent b9b858a commit 2d0aaee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/util/test_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ impl KVStore for TestStore {
480480
Ok(())
481481
}
482482

483-
fn remove(&self, namespace: &str, sub_namespace: &str, key: &str) -> io::Result<()> {
483+
fn remove(&self, namespace: &str, sub_namespace: &str, key: &str, _lazy: bool) -> io::Result<()> {
484484
if self.read_only {
485485
return Err(io::Error::new(
486486
io::ErrorKind::PermissionDenied,

0 commit comments

Comments
 (0)