Skip to content

Commit

Permalink
fix format balance
Browse files Browse the repository at this point in the history
  • Loading branch information
rawdaGastan committed Sep 8, 2024
1 parent ed654e0 commit 93b62dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monitoring-bot/internal/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ func (m *Monitor) monitorBalance(manager client.Manager, wallet wallet) error {
if balance >= float64(wallet.Threshold) {
return nil
}
return m.sendBotMessage(fmt.Sprintf("wallet %s with address:\n%s\nhas balance = %v ⚠️", wallet.Name, wallet.Address, balance))
return m.sendBotMessage(fmt.Sprintf("wallet %s with address:\n%s\nhas balance = %f ⚠️", wallet.Name, wallet.Address, balance))
}

// pingGridProxies pings the different grid proxy networks
Expand Down

0 comments on commit 93b62dc

Please sign in to comment.