From 788354d81e59ed3b2397573bc38256eccd18e4db Mon Sep 17 00:00:00 2001 From: Admir Sabanovic Date: Tue, 6 Mar 2018 17:44:13 +0100 Subject: [PATCH] fix typo (#1285) --- cmd/tendermint/commands/init.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/tendermint/commands/init.go b/cmd/tendermint/commands/init.go index 0bc9e6269..70648f8ff 100644 --- a/cmd/tendermint/commands/init.go +++ b/cmd/tendermint/commands/init.go @@ -24,7 +24,7 @@ func initFiles(cmd *cobra.Command, args []string) { } else { privValidator = types.GenPrivValidatorFS(privValFile) privValidator.Save() - logger.Info("Genetated private validator", "path", privValFile) + logger.Info("Generated private validator", "path", privValFile) } // genesis file @@ -43,6 +43,6 @@ func initFiles(cmd *cobra.Command, args []string) { if err := genDoc.SaveAs(genFile); err != nil { panic(err) } - logger.Info("Genetated genesis file", "path", genFile) + logger.Info("Generated genesis file", "path", genFile) } }