Browse Source

Increase size of wallet confirmation code

pull/22/head
Gregory Rudolph 5 years ago
parent
commit
aca97bf503
  1. 2
      cmdWallet.go

2
cmdWallet.go

@ -34,7 +34,7 @@ func cmdWallet(cmd []string) { @@ -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))])

Loading…
Cancel
Save