Tks for u good job.
I find some problem in branch part5
file: base58.go
function Base58Encode:
//for b := range input {
for , b := range input {
if b == 0x00 {
result = append([]byte{b58Alphabet[0]}, result...)
} else {
break
}
}
function Base58Encode:
//for b := range input {
for ,b := range input {
//if b == 0x00 {
if b == b58Alphabet[0] {
zeroBytes++
}
}
Tks for u good job. I find some problem in branch part5 file: base58.go function Base58Encode: //for b := range input { for , b := range input { if b == 0x00 { result = append([]byte{b58Alphabet[0]}, result...) } else { break } } function Base58Encode: //for b := range input { for ,b := range input { //if b == 0x00 { if b == b58Alphabet[0] { zeroBytes++ } }