[lbry] txscript: remove claim prefix for addr calculation

This commit is contained in:
Brannon King 2021-07-23 12:13:31 -04:00 committed by Roy Lee
parent 2765ac7215
commit 62f2be3284

View file

@ -906,6 +906,8 @@ func scriptHashToAddrs(hash []byte, params *chaincfg.Params) []btcutil.Address {
// with an invalid script version error.
func ExtractPkScriptAddrs(pkScript []byte, chainParams *chaincfg.Params) (ScriptClass, []btcutil.Address, int, error) {
pkScript = StripClaimScriptPrefix(pkScript)
// Check for pay-to-pubkey-hash script.
if hash := extractPubKeyHash(pkScript); hash != nil {
return PubKeyHashTy, pubKeyHashToAddrs(hash, chainParams), 1, nil