Skip to content

Commit 65a5559

Browse files
committed
f Err msg
1 parent a9ce7d9 commit 65a5559

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning-persister/src/fs_store.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,9 @@ impl KVStore for FilesystemStore {
322322

323323
// If we otherwise don't find a file at the given path something went wrong.
324324
if !metadata.is_file() {
325-
debug_assert!(false, "Failed to list keys of {}/{}: file is not present.",
325+
debug_assert!(false, "Failed to list keys of {}/{}: file coulnd't be accessed.",
326326
PrintableString(namespace), PrintableString(sub_namespace));
327-
let msg = format!("Failed to list keys of {}/{}: file is not present.",
327+
let msg = format!("Failed to list keys of {}/{}: file couldn't be accessed.",
328328
PrintableString(namespace), PrintableString(sub_namespace));
329329
return Err(std::io::Error::new(std::io::ErrorKind::Other, msg));
330330
}

0 commit comments

Comments
 (0)