diff --git a/cmd/harmony/main.go b/cmd/harmony/main.go index 4550c63f2..709f3ef9a 100644 --- a/cmd/harmony/main.go +++ b/cmd/harmony/main.go @@ -170,7 +170,7 @@ func initSetup() { accountIndex, genesisAccount = genesis.FindAccount(*stakingAccounts) if genesisAccount == nil { - fmt.Printf("Can't find the account address: %v!\n", *stakingAccounts) + fmt.Printf("Can't find the account address: %v\n", *stakingAccounts) os.Exit(100) } @@ -184,7 +184,7 @@ func initSetup() { } if !foundAccount { - fmt.Printf("Can't find the matching account key: %v!\n", genesisAccount.Address) + fmt.Printf("Can't find the matching account key: %v\n", genesisAccount.Address) os.Exit(101) }