The modified base58 encoding and decoding functionality that current exists via the btcutil.Base58Encode and btcutil.Base58Decode functions is being moved into a sub-package named base58. This allows it to be used by 3rd-parties without all of the extra dependencies required by btcutil.
Anyone who is using this functionality will need to make the minor modifications to their code as follows: 1) Import to the new package: import "github.com/conformal/btcutil/base58" 2) Rename every instance of btcutil.Base58Decode to base58.Decode 3) Rename every instance of btcutil.Base58Encode to base58.Encode New Package Code: https://github.com/conformal/btcutil/tree/master/base58 API Reference Documentation: http://godoc.org/github.com/conformal/btcutil/base58 Dave -------------------------------------------------- You are receiving this because you subscribed to the btcd mailing list. Send an e-mail to [email protected] to unsubscribe.
signature.asc
Description: OpenPGP digital signature
