From d48d0001951f265d90b1d3c1502db3d28c7d3477 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Sat, 24 Oct 2020 10:17:07 +0500 Subject: [PATCH] Remove duplicate print message on keys add command (#7654) Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- client/keys/add.go | 1 - 1 file changed, 1 deletion(-) diff --git a/client/keys/add.go b/client/keys/add.go index 57b37a5001..b2e267e83e 100644 --- a/client/keys/add.go +++ b/client/keys/add.go @@ -306,7 +306,6 @@ func printCreate(cmd *cobra.Command, info keyring.Info, showMnemonic bool, mnemo // print mnemonic unless requested not to. if showMnemonic { - fmt.Fprintln(cmd.ErrOrStderr(), "\n**Important** write this mnemonic phrase in a safe place.") fmt.Fprintln(cmd.ErrOrStderr(), "\n**Important** write this mnemonic phrase in a safe place.") fmt.Fprintln(cmd.ErrOrStderr(), "It is the only way to recover your account if you ever forget your password.") fmt.Fprintln(cmd.ErrOrStderr(), "")