scripts: remove unused 2nd argument in function call
This commit is contained in:
parent
759bba5c21
commit
886bdee947
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ function isScriptHashInput() {
|
|||
var scriptSig = Script.fromChunks(this.chunks.slice(0, -1))
|
||||
var scriptPubKey = Script.fromBuffer(lastChunk)
|
||||
|
||||
return classifyInput(scriptSig, false) === classifyOutput(scriptPubKey)
|
||||
return classifyInput(scriptSig) === classifyOutput(scriptPubKey)
|
||||
}
|
||||
|
||||
function isScriptHashOutput() {
|
||||
|
|
Loading…
Reference in a new issue