Browse Source

fix typo (#1285)

pull/1286/head
Admir Sabanovic 6 years ago
committed by Anton Kaliaev
parent
commit
788354d81e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      cmd/tendermint/commands/init.go

+ 2
- 2
cmd/tendermint/commands/init.go View File

@ -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)
}
}

Loading…
Cancel
Save