xmr-remote-nodes/internal/handler/views/utils.go

9 lines
177 B
Go
Raw Normal View History

2024-11-01 15:31:34 +00:00
package views
import "strconv"
// Convert the float to a string, trimming unnecessary zeros
func formatFloat(f float64) string {
return strconv.FormatFloat(f, 'f', -1, 64)
}