scripts: recursive scriptHash no longer problematic
This commit is contained in:
parent
c637cb4be7
commit
8b1e2c5e1e
1 changed files with 2 additions and 3 deletions
|
@ -35,13 +35,12 @@ function classifyOutput(script) {
|
|||
}
|
||||
}
|
||||
|
||||
function classifyInput(script, checkScriptHash) {
|
||||
function classifyInput(script) {
|
||||
assert(script instanceof Script, 'Expected Script, got ', script)
|
||||
if (checkScriptHash === undefined) checkScriptHash = true
|
||||
|
||||
if (isPubKeyHashInput.call(script)) {
|
||||
return 'pubkeyhash'
|
||||
} else if (checkScriptHash && isScriptHashInput.call(script)) {
|
||||
} else if (isScriptHashInput.call(script)) {
|
||||
return 'scripthash'
|
||||
} else if (isMultisigInput.call(script)) {
|
||||
return 'multisig'
|
||||
|
|
Loading…
Reference in a new issue