Enable txindex=1 as default #37

Closed
kodxana wants to merge 211 commits from master into master
Showing only changes of commit 62f2be3284 - Show all commits

View file

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