You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working on a set of libraries for zCash. I need a public bech32.DecodeNoLimit(encoded) that retrieves version info. I can create a pull request and add
I am working on a set of libraries for zCash. I need a public bech32.DecodeNoLimit(encoded) that retrieves version info. I can create a pull request and add
func DecodeNoLimitVersioned(bech string) (string, []byte, Version, error) {
hrp, data, version, err := decodeNoLimit(bech)
return hrp, data, version, err
}
The text was updated successfully, but these errors were encountered: