From 7eae777f2fa1a135e075804cd5f4b44e46fa3631 Mon Sep 17 00:00:00 2001 From: Dmitry Balashov <43530070+0x009922@users.noreply.github.com> Date: Thu, 21 Dec 2023 10:04:18 +0700 Subject: [PATCH] [docs]: link issue #4161 Signed-off-by: Dmitry Balashov <43530070+0x009922@users.noreply.github.com> --- cli/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/lib.rs b/cli/src/lib.rs index d4c6290ff17..e0749042225 100644 --- a/cli/src/lib.rs +++ b/cli/src/lib.rs @@ -524,6 +524,7 @@ pub fn read_config( // careful here: `genesis.file` might be a path relative to the config file. // we need to resolve it before proceeding // TODO: move this logic into `iroha_config` + // https://github.com/hyperledger/iroha/issues/4161 let join_to_config_dir = |x: &mut PathBuf| { *x = config_dir.join(&x); };