From fd395902d9109a2d958c6e5101827c544e14fd06 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Mon, 15 Jul 2024 12:19:40 +0530 Subject: [PATCH] Unset home and keyring dir from depinject client config --- cmd/laconicd/cmd/root.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/cmd/laconicd/cmd/root.go b/cmd/laconicd/cmd/root.go index 638f554f..14e3f468 100644 --- a/cmd/laconicd/cmd/root.go +++ b/cmd/laconicd/cmd/root.go @@ -134,14 +134,17 @@ func ProvideClientContext( WithLegacyAmino(legacyAmino). WithInput(os.Stdin). WithAccountRetriever(types.AccountRetriever{}). - // Workaround: Avoid providing DefaultNodeHome to depinject as it is given precedence over the one passed using --home flag in some CLI commands - // TODO: Implement proper fix - // WithHomeDir(app.DefaultNodeHome). + WithHomeDir(app.DefaultNodeHome). WithViper(EnvPrefix) // env variable prefix // Read the config again to overwrite the default values with the values from the config file clientCtx, _ = config.ReadFromClientConfig(clientCtx) + // Workaround: Unset clientCtx.HomeDir and clientCtx.KeyringDir from depinject clientCtx as they are given precedence over the CLI args (--home flag) in some commands + // TODO: Implement proper fix + clientCtx.HomeDir = "" + clientCtx.KeyringDir = "" + return clientCtx }