From 329877705132fb04fb528ba9751a7ca52c76e525 Mon Sep 17 00:00:00 2001 From: Luther Blissett Date: Sat, 24 Sep 2022 15:03:38 +0200 Subject: [PATCH] lilith: Fix import paths. --- bin/lilith/Cargo.toml | 2 +- bin/lilith/src/main.rs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bin/lilith/Cargo.toml b/bin/lilith/Cargo.toml index 9b7c44813..c0a5d07ea 100644 --- a/bin/lilith/Cargo.toml +++ b/bin/lilith/Cargo.toml @@ -11,7 +11,7 @@ keywords = [] categories = [] [dependencies] -darkfi = {path = "../../", features = ["net"]} +darkfi = {path = "../../", features = ["net", "rpc"]} # Async async-channel = "1.7.1" diff --git a/bin/lilith/src/main.rs b/bin/lilith/src/main.rs index 4a10c005e..11ff58b66 100644 --- a/bin/lilith/src/main.rs +++ b/bin/lilith/src/main.rs @@ -22,9 +22,8 @@ use darkfi::{ }, util::{ cli::{get_log_config, get_log_level, spawn_config}, - expand_path, file::{load_file, save_file}, - path::get_config_path, + path::{expand_path, get_config_path}, }, Result, };