We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
into()
1 parent 9331f11 commit dad02b8Copy full SHA for dad02b8
src/lib.rs
@@ -354,7 +354,7 @@ impl Builder {
354
pub fn build(&self) -> Arc<Node<SqliteStore>> {
355
let storage_dir_path = self.config.read().unwrap().storage_dir_path.clone();
356
fs::create_dir_all(storage_dir_path.clone()).expect("Failed to create LDK data directory");
357
- let kv_store = Arc::new(SqliteStore::new(storage_dir_path.into()).into());
+ let kv_store = Arc::new(SqliteStore::new(storage_dir_path.into()));
358
self.build_with_store(kv_store)
359
}
360
0 commit comments