Skip to content

Commit 7b5c244

Browse files
authored
Update
Update randString function to generate only numeric strings.
1 parent a235cf9 commit 7b5c244

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

axis1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ var proxies []string
408408

409409
// ---------------- UTILS ----------------
410410
func randString(n int) string {
411-
chars := []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
411+
chars := []rune("0123456789")
412412
b := make([]rune, n)
413413
for i := range b {
414414
b[i] = chars[rand.Intn(len(chars))]

0 commit comments

Comments
 (0)