Browse Source

lilith: Fix import paths.

Luther Blissett 3 years ago
parent
commit
3298777051
2 changed files with 2 additions and 3 deletions
  1. 1 1
      bin/lilith/Cargo.toml
  2. 1 2
      bin/lilith/src/main.rs

+ 1 - 1
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"

+ 1 - 2
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,
 };