Increase size of wallet confirmation code
This commit is contained in:
@ -34,7 +34,7 @@ func cmdWallet(cmd []string) {
|
||||
chars := []rune("ABCDEFGHIJKLMNOPQRSTUVWXYZ" +
|
||||
"abcdefghijklmnopqrstuvwxyz" +
|
||||
"0123456789")
|
||||
length := 5
|
||||
length := 8
|
||||
var b strings.Builder
|
||||
for i := 0; i < length; i++ {
|
||||
b.WriteRune(chars[rand.Intn(len(chars))])
|
||||
|
||||
Reference in New Issue
Block a user