Skip to content

Commit 89e9504

Browse files
committed
f One into() is enough
1 parent 613bb1f commit 89e9504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ impl Builder {
326326
pub fn build(&self) -> Arc<Node<SqliteStore>> {
327327
let storage_dir = self.config.storage_dir_path.clone();
328328
fs::create_dir_all(storage_dir.clone()).expect("Failed to create LDK data directory");
329-
let kv_store = Arc::new(SqliteStore::new(storage_dir.into()).into());
329+
let kv_store = Arc::new(SqliteStore::new(storage_dir.into()));
330330
self.build_with_store(kv_store)
331331
}
332332

0 commit comments

Comments
 (0)