Merge pull request #13 from ryanxcharles/bug/multisig-bugs

fix bugs for cosign
This commit is contained in:
Jeff Garzik 2014-01-07 08:59:30 -08:00
commit 0bdcfa3045
1 changed files with 3 additions and 3 deletions

View File

@ -118,8 +118,8 @@ function spec(b) {
{
return (this.chunks.length > 3 &&
isSmallIntOp(this.chunks[0]) &&
isSmallIntOp(this.chunks[-2]) &&
this.chunks[-1] == OP_CHECKMULTISIG);
isSmallIntOp(this.chunks[this.chunks.length-2]) &&
this.chunks[this.chunks.length-1] == OP_CHECKMULTISIG);
};
// is this a script form we know?
@ -443,7 +443,7 @@ function spec(b) {
};
Script.chunksToBuffer = function (chunks) {
var buf = Put();
var buf = new Put();
for (var i = 0, l = chunks.length; i < l; i++) {
var data = chunks[i];
if (Buffer.isBuffer(data)) {