From 69a11e293b38f5c947c78c7f85a5f8cd8ec22137 Mon Sep 17 00:00:00 2001 From: Prathyusha Lakkireddy Date: Wed, 12 May 2021 20:49:27 +0530 Subject: [PATCH] Fixed parse key issue (#9299) * Fixed parse key issue * Added getconfig in root command * uncommented changes in parse.go (cherry picked from commit d7dd1d7affc02a819845802da540bc2742d82074) # Conflicts: # simapp/simd/cmd/root.go --- simapp/simd/cmd/root.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/simapp/simd/cmd/root.go b/simapp/simd/cmd/root.go index 4b20b73167e2..b5a87bba6a86 100644 --- a/simapp/simd/cmd/root.go +++ b/simapp/simd/cmd/root.go @@ -74,7 +74,12 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) { } func initRootCmd(rootCmd *cobra.Command, encodingConfig params.EncodingConfig) { +<<<<<<< HEAD authclient.Codec = encodingConfig.Marshaler +======= + cfg := sdk.GetConfig() + cfg.Seal() +>>>>>>> d7dd1d7af (Fixed parse key issue (#9299)) rootCmd.AddCommand( genutilcli.InitCmd(simapp.ModuleBasics, simapp.DefaultNodeHome),