mirror of
https://github.com/bitcoinbook/bitcoinbook
synced 2025-07-13 01:58:13 +00:00
Merge pull request #69 from kargakis/develop
Handle error when decoding address
This commit is contained in:
commit
7b4423e291
@ -28,6 +28,7 @@ func PayToAddrScript(addressStr string) {
|
|||||||
// the address type. It is also required for the upcoming call to
|
// the address type. It is also required for the upcoming call to
|
||||||
// PayToAddrScript.
|
// PayToAddrScript.
|
||||||
address, err := btcutil.DecodeAddress(addressStr, &btcnet.MainNetParams)
|
address, err := btcutil.DecodeAddress(addressStr, &btcnet.MainNetParams)
|
||||||
|
handle(err)
|
||||||
|
|
||||||
// Create a public key script that pays to the address.
|
// Create a public key script that pays to the address.
|
||||||
script, err := btcscript.PayToAddrScript(address)
|
script, err := btcscript.PayToAddrScript(address)
|
||||||
|
Loading…
Reference in New Issue
Block a user