Skip to content

Commit

Permalink
fix: mistakes in network detail command response
Browse files Browse the repository at this point in the history
  • Loading branch information
kehiy committed Dec 27, 2023
1 parent 77b910b commit 8d7f798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord/discord.go
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ func (b *Bot) networkInfo() string {
return msg
}
msg += "\n📊 The current statistics are:\n"
msg += fmt.Sprintf("Node started at: %v\n", time.UnixMilli(nodes.StartedAt*1000).Format("02/01/2006, 15:04:05"))
msg += fmt.Sprintf("🕧Node started at: %v\n", time.UnixMilli(nodes.StartedAt*1000).Format("02/01/2006, 15:04:05"))
msg += fmt.Sprintf("⬆️Total bytes sent: %v\n", uint32(nodes.TotalSentBytes))
msg += fmt.Sprintf("⬇️Total bytes received: %v\n", uint32(nodes.TotalReceivedBytes))
msg += fmt.Sprintf("👾Number of connected peers: %v\n", len(nodes.Peers))
Expand Down

0 comments on commit 8d7f798

Please sign in to comment.