diff --git a/discord/discord.go b/discord/discord.go index 1ebaee6a..1af4236d 100644 --- a/discord/discord.go +++ b/discord/discord.go @@ -176,8 +176,8 @@ func (b *Bot) messageHandler(s *discordgo.Session, m *discordgo.MessageCreate) { msg += p.Sprintf("--------------------Validator Info----------------\n") msg += p.Sprintf("Number: %v\n", val.Validator.Number) msg += p.Sprintf("Last bonding height: %v\n", val.Validator.LastBondingHeight) - msg += p.Sprintf("Last sortition height: %v tPAC's\n", val.Validator.LastSortitionHeight) - msg += p.Sprintf("Stake amount: %v\n", util.ChangeToCoin(val.Validator.Stake)) + msg += p.Sprintf("Last sortition height: %v\n", val.Validator.LastSortitionHeight) + msg += p.Sprintf("Stake amount: %v tPAC's\n", util.ChangeToCoin(val.Validator.Stake)) _, _ = s.ChannelMessageSendReply(m.ChannelID, msg, m.Reference()) return }