Browse Source

scripts: remove unused 2nd argument in function call

hk-custom-address
Daniel Cousens 10 years ago
parent
commit
886bdee947
  1. 2
      src/scripts.js

2
src/scripts.js

@ -116,7 +116,7 @@ function isScriptHashInput() {
var scriptSig = Script.fromChunks(this.chunks.slice(0, -1)) var scriptSig = Script.fromChunks(this.chunks.slice(0, -1))
var scriptPubKey = Script.fromBuffer(lastChunk) var scriptPubKey = Script.fromBuffer(lastChunk)
return classifyInput(scriptSig, false) === classifyOutput(scriptPubKey) return classifyInput(scriptSig) === classifyOutput(scriptPubKey)
} }
function isScriptHashOutput() { function isScriptHashOutput() {

Loading…
Cancel
Save