From bc5b9478dff90072bd1339925d370efece0e341f Mon Sep 17 00:00:00 2001 From: Oleksandr Pravdyvyi Date: Wed, 24 Sep 2025 12:25:25 +0300 Subject: [PATCH] fix: gitignore update --- .gitignore | 1 + wallet/src/lib.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 8f6f072..61e1536 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ data/ .idea/ .vscode/ rocksdb +Cargo.lock \ No newline at end of file diff --git a/wallet/src/lib.rs b/wallet/src/lib.rs index 7b7f830..73070d7 100644 --- a/wallet/src/lib.rs +++ b/wallet/src/lib.rs @@ -22,6 +22,8 @@ use crate::{ poller::TxPoller, }; +// + pub const HOME_DIR_ENV_VAR: &str = "NSSA_WALLET_HOME_DIR"; pub mod chain_storage;