Address/Script: consistent function ordering
This commit is contained in:
parent
842b075e75
commit
54cc123d31
2 changed files with 15 additions and 15 deletions
|
@ -314,6 +314,13 @@ Script.createPubKeyHashScriptSig = function(signature, pubKey) {
|
|||
return script
|
||||
}
|
||||
|
||||
// <scriptSig> {serialized scriptPubKey script}
|
||||
Script.createP2SHScriptSig = function(scriptSig, scriptPubKey) {
|
||||
var inScript = new Script(scriptSig.buffer)
|
||||
inScript.writeBytes(scriptPubKey.buffer)
|
||||
return inScript
|
||||
}
|
||||
|
||||
// OP_0 [signatures ...]
|
||||
Script.createMultisigScriptSig = function(signatures, scriptPubKey) {
|
||||
if (scriptPubKey) {
|
||||
|
@ -334,13 +341,6 @@ Script.createMultisigScriptSig = function(signatures, scriptPubKey) {
|
|||
return inScript
|
||||
}
|
||||
|
||||
// <scriptSig> {serialized scriptPubKey script}
|
||||
Script.createP2SHScriptSig = function(scriptSig, scriptPubKey) {
|
||||
var inScript = new Script(scriptSig.buffer)
|
||||
inScript.writeBytes(scriptPubKey.buffer)
|
||||
return inScript
|
||||
}
|
||||
|
||||
Script.prototype.clone = function() {
|
||||
return new Script(this.buffer)
|
||||
}
|
||||
|
|
|
@ -22,14 +22,6 @@ describe('Address', function() {
|
|||
})
|
||||
|
||||
describe('fromBase58Check', function() {
|
||||
it('throws on invalid base58check', function() {
|
||||
b58fixtures.invalid.forEach(function(f) {
|
||||
assert.throws(function() {
|
||||
Address.fromBase58Check(f)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
fixtures.valid.forEach(function(f) {
|
||||
it('imports ' + f.description + '(' + f.network + ') correctly', function() {
|
||||
var addr = Address.fromBase58Check(f.base58check)
|
||||
|
@ -38,6 +30,14 @@ describe('Address', function() {
|
|||
assert.equal(addr.hash.toString('hex'), f.hex)
|
||||
})
|
||||
})
|
||||
|
||||
it('throws on invalid base58check', function() {
|
||||
b58fixtures.invalid.forEach(function(f) {
|
||||
assert.throws(function() {
|
||||
Address.fromBase58Check(f)
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
describe('fromScriptPubKey', function() {
|
||||
|
|
Loading…
Reference in a new issue