Skip to content

Commit 8ef041f

Browse files
committed
Fix lightning-persister warnings.
1 parent bc1a814 commit 8ef041f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning-persister/src/fs_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl KVStore for FilesystemStore {
191191
dest_file.sync_all()?;
192192
Ok(())
193193
}
194-
Err(e) => Err(e),
194+
Err(e) => Err(e.into()),
195195
}
196196
}
197197
};

0 commit comments

Comments
 (0)