Branch: refs/heads/master
Home: https://github.com/conformal/btcutil
Commit: 32f63f3abc911940b9a62e9c7f9322d2fdbb54bb
https://github.com/conformal/btcutil/commit/32f63f3abc911940b9a62e9c7f9322d2fdbb54bb
Author: Josh Rickmar <[email protected]>
Date: 2014-01-02 (Thu, 02 Jan 2014)
Changed paths:
A hash160.go
Log Message:
-----------
Add Hash160 func to calculate ripemd160(sha256(data)).
Commit: 58bae71f61942792b5601db0e183a8db4232aad0
https://github.com/conformal/btcutil/commit/58bae71f61942792b5601db0e183a8db4232aad0
Author: Josh Rickmar <[email protected]>
Date: 2014-01-03 (Fri, 03 Jan 2014)
Changed paths:
M addrconvs.go
A address.go
A address_test.go
M internal_test.go
M test_coverage.txt
Log Message:
-----------
Implement Address interface.
Address is a generic interface for any type of "address" a
transaction can be sent to, including but not limited to
pay-to-pubkey, pay-to-pubkey-hash, and pay-to-script-hash.
This change implements Address and concrete types for P2PKH and P2SH
addresses with 100% test coverage. Pay-to-pubkey support will be
added in the future.
This API is intended to replace the old EncodeAddress/DecodeAddress
functions which are now deprecated.
Compare:
https://github.com/conformal/btcutil/compare/f3d39524ce38...58bae71f6194