We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4fabeb commit b9de0f3Copy full SHA for b9de0f3
1 file changed
simapp/simd/cmd/root_v2.go
@@ -115,7 +115,7 @@ func ProvideClientContext(
115
WithAddressCodec(addressCodec).
116
WithValidatorAddressCodec(validatorAddressCodec).
117
WithConsensusAddressCodec(consensusAddressCodec).
118
- WithHomeDir(simapp.DefaultNodeHome).
+ WithHomeDir(tempDir()).
119
WithViper("") // uses by default the binary name as prefix
120
121
// Read the config to overwrite the default values with the values from the config file
@@ -124,6 +124,7 @@ func ProvideClientContext(
124
if err != nil {
125
panic(err)
126
}
127
+ clientCtx.HomeDir = ""
128
129
// textual is enabled by default, we need to re-create the tx config grpc instead of bank keeper.
130
txConfigOpts.TextualCoinMetadataQueryFn = authtxconfig.NewGRPCCoinMetadataQueryFn(clientCtx)
0 commit comments