base58: remove bogus code from CheckDecode
No other implementation does that and it looks weird, I see nothing meaninful here.
This commit is contained in:
parent
369ac01a27
commit
a025b9c42d
1 changed files with 0 additions and 7 deletions
|
@ -16,13 +16,6 @@ func CheckDecode(s string) (b []byte, err error) {
|
|||
return nil, err
|
||||
}
|
||||
|
||||
for i := 0; i < len(s); i++ {
|
||||
if s[i] != '1' {
|
||||
break
|
||||
}
|
||||
b = append([]byte{0x00}, b...)
|
||||
}
|
||||
|
||||
if len(b) < 5 {
|
||||
return nil, errors.New("invalid base-58 check string: missing checksum")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue