From 1bbb3bddcc246d68e3a9bcc76733977068fd016e Mon Sep 17 00:00:00 2001 From: darkfi Date: Thu, 19 Sep 2024 18:24:29 +0200 Subject: [PATCH] evgrd: change path for test client so it's not using the same data dir as the daemon itself ;) --- script/evgrd/bin/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/evgrd/bin/test.rs b/script/evgrd/bin/test.rs index cddf06e63..272925a4c 100644 --- a/script/evgrd/bin/test.rs +++ b/script/evgrd/bin/test.rs @@ -43,7 +43,7 @@ pub struct Privmsg { async fn amain() -> Result<()> { info!("Instantiating event DAG"); let ex = std::sync::Arc::new(smol::Executor::new()); - let datastore = expand_path("~/.local/darkfi/evgrd")?; + let datastore = expand_path("~/.local/darkfi/evgrd-test-client")?; fs::create_dir_all(&datastore).await?; let sled_db = sled::open(datastore)?;