cmd/faucet: fix period to days conversion

parent 8a284086
...@@ -108,11 +108,12 @@ func main() { ...@@ -108,11 +108,12 @@ func main() {
if period%60 == 0 { if period%60 == 0 {
period /= 60 period /= 60
periods[i] = fmt.Sprintf("%d hours", period) periods[i] = fmt.Sprintf("%d hours", period)
}
if period%24 == 0 { if period%24 == 0 {
period /= 24 period /= 24
periods[i] = fmt.Sprintf("%d days", period) periods[i] = fmt.Sprintf("%d days", period)
} }
}
if period == 1 { if period == 1 {
periods[i] = strings.TrimSuffix(periods[i], "s") periods[i] = strings.TrimSuffix(periods[i], "s")
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment