2015-02-23 00:36:57 +01:00
|
|
|
/* global describe, it, beforeEach */
|
|
|
|
|
2014-06-16 08:05:31 +02:00
|
|
|
var assert = require('assert')
|
2015-08-20 05:37:19 +02:00
|
|
|
var baddress = require('../src/address')
|
|
|
|
var bscript = require('../src/script')
|
2015-03-11 01:51:01 +01:00
|
|
|
var ops = require('../src/opcodes')
|
|
|
|
|
2014-06-16 08:05:31 +02:00
|
|
|
var BigInteger = require('bigi')
|
2015-03-02 06:48:36 +01:00
|
|
|
var ECPair = require('../src/ecpair')
|
2014-06-16 08:05:31 +02:00
|
|
|
var Transaction = require('../src/transaction')
|
|
|
|
var TransactionBuilder = require('../src/transaction_builder')
|
2015-07-28 08:42:57 +02:00
|
|
|
var NETWORKS = require('../src/networks')
|
2014-06-16 08:05:31 +02:00
|
|
|
|
|
|
|
var fixtures = require('./fixtures/transaction_builder')
|
|
|
|
|
2015-07-28 08:49:46 +02:00
|
|
|
function construct (f, sign) {
|
2015-07-28 08:42:57 +02:00
|
|
|
var network = NETWORKS[f.network]
|
2015-07-28 08:49:46 +02:00
|
|
|
var txb = new TransactionBuilder(network)
|
2015-07-28 08:42:57 +02:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
f.inputs.forEach(function (input) {
|
2015-01-28 07:31:06 +01:00
|
|
|
var prevTxScript
|
|
|
|
|
|
|
|
if (input.prevTxScript) {
|
2015-08-20 05:37:19 +02:00
|
|
|
prevTxScript = bscript.fromASM(input.prevTxScript)
|
2015-01-28 07:31:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
txb.addInput(input.txId, input.vout, input.sequence, prevTxScript)
|
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
f.outputs.forEach(function (output) {
|
2015-08-20 05:37:19 +02:00
|
|
|
txb.addOutput(bscript.fromASM(output.script), output.value)
|
2015-01-28 07:31:06 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
if (sign === undefined || sign) {
|
2015-02-23 00:36:57 +01:00
|
|
|
f.inputs.forEach(function (input, index) {
|
|
|
|
input.signs.forEach(function (sign) {
|
2015-07-28 08:42:57 +02:00
|
|
|
var keyPair = ECPair.fromWIF(sign.keyPair, network)
|
2015-02-04 10:22:11 +01:00
|
|
|
var redeemScript
|
2015-01-28 07:31:06 +01:00
|
|
|
|
2015-02-04 10:22:11 +01:00
|
|
|
if (sign.redeemScript) {
|
2015-08-20 05:37:19 +02:00
|
|
|
redeemScript = bscript.fromASM(sign.redeemScript)
|
2015-02-04 10:22:11 +01:00
|
|
|
}
|
2015-01-28 07:31:06 +01:00
|
|
|
|
2015-03-02 06:48:36 +01:00
|
|
|
txb.sign(index, keyPair, redeemScript, sign.hashType)
|
2015-01-28 07:31:06 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: add support for locktime/version in TransactionBuilder API
|
2015-03-02 03:31:03 +01:00
|
|
|
if (f.version !== undefined) {
|
2015-02-23 00:36:57 +01:00
|
|
|
txb.tx.version = f.version
|
2015-03-02 03:31:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (f.locktime !== undefined) {
|
2015-02-23 00:36:57 +01:00
|
|
|
txb.tx.locktime = f.locktime
|
2015-03-02 03:31:03 +01:00
|
|
|
}
|
2015-07-28 08:49:46 +02:00
|
|
|
|
|
|
|
return txb
|
2015-01-28 07:31:06 +01:00
|
|
|
}
|
|
|
|
|
2015-08-20 05:12:05 +02:00
|
|
|
describe('TransactionBuilder', function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
// constants
|
|
|
|
var keyPair = new ECPair(BigInteger.ONE)
|
|
|
|
var scripts = [
|
|
|
|
'1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH',
|
|
|
|
'1cMh228HTCiwS8ZsaakH8A8wze1JR5ZsP'
|
|
|
|
].map(function (x) {
|
2015-08-20 05:37:19 +02:00
|
|
|
return baddress.toOutputScript(x)
|
2015-08-20 05:03:54 +02:00
|
|
|
})
|
|
|
|
var txHash = new Buffer('0e7cea811c0be9f73c0aca591034396e7264473fc25c1ca45195d7417b36cbe2', 'hex')
|
2014-06-16 08:05:31 +02:00
|
|
|
var txb
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
beforeEach(function () {
|
2014-06-16 08:05:31 +02:00
|
|
|
txb = new TransactionBuilder()
|
|
|
|
})
|
|
|
|
|
2015-08-07 08:55:13 +02:00
|
|
|
describe('fromTransaction', function () {
|
|
|
|
fixtures.valid.build.forEach(function (f) {
|
|
|
|
it('builds the correct TransactionBuilder for ' + f.description, function () {
|
|
|
|
var network = NETWORKS[f.network || 'bitcoin']
|
|
|
|
var tx = Transaction.fromHex(f.txHex)
|
|
|
|
var txb = TransactionBuilder.fromTransaction(tx, network)
|
|
|
|
|
|
|
|
assert.strictEqual(txb.build().toHex(), f.txHex)
|
|
|
|
assert.strictEqual(txb.network, network)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
fixtures.invalid.fromTransaction.forEach(function (f) {
|
|
|
|
it('throws on ' + f.exception, function () {
|
|
|
|
var tx = Transaction.fromHex(f.txHex)
|
|
|
|
|
|
|
|
assert.throws(function () {
|
|
|
|
TransactionBuilder.fromTransaction(tx)
|
|
|
|
}, new RegExp(f.exception))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
describe('addInput', function () {
|
|
|
|
it('accepts a txHash, index [and sequence number]', function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
var vin = txb.addInput(txHash, 1, 54)
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(vin, 0)
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-01-06 06:13:15 +01:00
|
|
|
var txIn = txb.tx.ins[0]
|
2015-08-20 05:03:54 +02:00
|
|
|
assert.strictEqual(txIn.hash, txHash)
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(txIn.index, 1)
|
|
|
|
assert.strictEqual(txIn.sequence, 54)
|
|
|
|
assert.strictEqual(txb.inputs[0].prevOutScript, undefined)
|
2014-06-16 08:05:31 +02:00
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
it('accepts a txHash, index [, sequence number and scriptPubKey]', function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
var vin = txb.addInput(txHash, 1, 54, scripts[1])
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(vin, 0)
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-01-06 06:13:15 +01:00
|
|
|
var txIn = txb.tx.ins[0]
|
2015-08-20 05:03:54 +02:00
|
|
|
assert.strictEqual(txIn.hash, txHash)
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(txIn.index, 1)
|
|
|
|
assert.strictEqual(txIn.sequence, 54)
|
2015-08-20 05:03:54 +02:00
|
|
|
assert.strictEqual(txb.inputs[0].prevOutScript, scripts[1])
|
2014-06-16 08:05:31 +02:00
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
it('accepts a prevTx, index [and sequence number]', function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
var prevTx = new Transaction()
|
|
|
|
prevTx.addOutput(scripts[0], 0)
|
|
|
|
prevTx.addOutput(scripts[1], 1)
|
|
|
|
|
2014-07-28 06:28:44 +02:00
|
|
|
var vin = txb.addInput(prevTx, 1, 54)
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(vin, 0)
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-01-06 06:13:15 +01:00
|
|
|
var txIn = txb.tx.ins[0]
|
2015-08-20 05:03:54 +02:00
|
|
|
assert.deepEqual(txIn.hash, prevTx.getHash())
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(txIn.index, 1)
|
|
|
|
assert.strictEqual(txIn.sequence, 54)
|
2015-08-20 05:03:54 +02:00
|
|
|
assert.strictEqual(txb.inputs[0].prevOutScript, scripts[1])
|
2014-06-16 08:05:31 +02:00
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
it('returns the input index', function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
assert.strictEqual(txb.addInput(txHash, 0), 0)
|
|
|
|
assert.strictEqual(txb.addInput(txHash, 1), 1)
|
2014-06-16 08:05:31 +02:00
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
it('throws if SIGHASH_ALL has been used to sign any existing scriptSigs', function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
txb.addInput(txHash, 0)
|
2015-03-02 06:48:36 +01:00
|
|
|
txb.sign(0, keyPair)
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
assert.throws(function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
txb.addInput(txHash, 0)
|
2014-06-16 08:05:31 +02:00
|
|
|
}, /No, this would invalidate signatures/)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
describe('addOutput', function () {
|
2015-03-02 07:18:56 +01:00
|
|
|
it('accepts an address string and value', function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
var vout = txb.addOutput(keyPair.getAddress(), 1000)
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(vout, 0)
|
2015-03-02 07:18:56 +01:00
|
|
|
|
|
|
|
var txout = txb.tx.outs[0]
|
2015-08-20 05:03:54 +02:00
|
|
|
assert.deepEqual(txout.script, scripts[0])
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(txout.value, 1000)
|
2015-03-02 07:18:56 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
it('accepts a ScriptPubKey and value', function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
var vout = txb.addOutput(scripts[0], 1000)
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(vout, 0)
|
2015-03-02 07:18:56 +01:00
|
|
|
|
|
|
|
var txout = txb.tx.outs[0]
|
2015-08-20 05:03:54 +02:00
|
|
|
assert.deepEqual(txout.script, scripts[0])
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(txout.value, 1000)
|
2015-03-02 07:18:56 +01:00
|
|
|
})
|
|
|
|
|
2015-07-24 04:16:37 +02:00
|
|
|
it('throws if address is of the wrong network', function () {
|
|
|
|
assert.throws(function () {
|
|
|
|
txb.addOutput('2NGHjvjw83pcVFgMcA7QvSMh2c246rxLVz9', 1000)
|
|
|
|
}, /2NGHjvjw83pcVFgMcA7QvSMh2c246rxLVz9 has no matching Script/)
|
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
it('throws if SIGHASH_ALL has been used to sign any existing scriptSigs', function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
txb.addInput(txHash, 0)
|
|
|
|
txb.addOutput(scripts[0], 2000)
|
2015-03-02 06:48:36 +01:00
|
|
|
txb.sign(0, keyPair)
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
assert.throws(function () {
|
2015-08-20 05:03:54 +02:00
|
|
|
txb.addOutput(scripts[1], 9000)
|
2014-06-16 08:05:31 +02:00
|
|
|
}, /No, this would invalidate signatures/)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
describe('sign', function () {
|
|
|
|
fixtures.invalid.sign.forEach(function (f) {
|
2015-07-28 08:42:57 +02:00
|
|
|
it('throws on ' + f.exception + (f.description ? ' (' + f.description + ')' : ''), function () {
|
2015-07-28 08:49:46 +02:00
|
|
|
txb = construct(f, false)
|
2015-01-06 01:00:49 +01:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
f.inputs.forEach(function (input, index) {
|
|
|
|
input.signs.forEach(function (sign) {
|
2015-08-07 09:01:31 +02:00
|
|
|
var keyPairNetwork = NETWORKS[sign.network || f.network]
|
|
|
|
var keyPair = ECPair.fromWIF(sign.keyPair, keyPairNetwork)
|
2015-02-04 10:22:11 +01:00
|
|
|
var redeemScript
|
2015-01-06 01:00:49 +01:00
|
|
|
|
2015-02-04 10:22:11 +01:00
|
|
|
if (sign.redeemScript) {
|
2015-08-20 05:37:19 +02:00
|
|
|
redeemScript = bscript.fromASM(sign.redeemScript)
|
2015-02-04 10:22:11 +01:00
|
|
|
}
|
2015-01-06 01:00:49 +01:00
|
|
|
|
2015-02-04 10:22:11 +01:00
|
|
|
if (!sign.throws) {
|
2015-03-02 06:48:36 +01:00
|
|
|
txb.sign(index, keyPair, redeemScript, sign.hashType)
|
2015-01-06 01:00:49 +01:00
|
|
|
} else {
|
2015-02-23 00:36:57 +01:00
|
|
|
assert.throws(function () {
|
2015-03-02 06:48:36 +01:00
|
|
|
txb.sign(index, keyPair, redeemScript, sign.hashType)
|
2015-01-06 01:00:49 +01:00
|
|
|
}, new RegExp(f.exception))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2014-06-16 08:05:31 +02:00
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
describe('build', function () {
|
|
|
|
fixtures.valid.build.forEach(function (f) {
|
|
|
|
it('builds "' + f.description + '"', function () {
|
2015-07-28 08:49:46 +02:00
|
|
|
txb = construct(f)
|
2015-01-23 06:35:09 +01:00
|
|
|
|
2014-06-16 08:05:31 +02:00
|
|
|
var tx = txb.build()
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(tx.toHex(), f.txHex)
|
2014-06-16 08:05:31 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
fixtures.invalid.build.forEach(function (f) {
|
|
|
|
describe('for ' + (f.description || f.exception), function () {
|
|
|
|
beforeEach(function () {
|
2015-01-28 07:31:06 +01:00
|
|
|
if (f.txHex) {
|
2015-09-05 06:10:25 +02:00
|
|
|
txb = TransactionBuilder.fromTransaction(Transaction.fromHex(f.txHex))
|
2015-01-28 07:31:06 +01:00
|
|
|
} else {
|
2015-07-28 08:49:46 +02:00
|
|
|
txb = construct(f)
|
2014-07-16 14:24:10 +02:00
|
|
|
}
|
|
|
|
})
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-02-23 00:36:57 +01:00
|
|
|
it('throws', function () {
|
|
|
|
assert.throws(function () {
|
2015-01-28 07:31:06 +01:00
|
|
|
txb.build()
|
|
|
|
}, new RegExp(f.exception))
|
2014-07-16 14:24:10 +02:00
|
|
|
})
|
2014-06-16 08:05:31 +02:00
|
|
|
|
2015-01-28 07:31:06 +01:00
|
|
|
if (f.alwaysThrows) return
|
2015-02-23 00:36:57 +01:00
|
|
|
it("doesn't throw if building incomplete", function () {
|
2015-01-28 07:31:06 +01:00
|
|
|
txb.buildIncomplete()
|
2014-07-16 14:24:10 +02:00
|
|
|
})
|
|
|
|
})
|
2014-06-16 08:05:31 +02:00
|
|
|
})
|
|
|
|
})
|
2014-07-28 06:28:44 +02:00
|
|
|
|
2015-03-03 11:50:46 +01:00
|
|
|
describe('multisig', function () {
|
|
|
|
fixtures.valid.multisig.forEach(function (f) {
|
|
|
|
it(f.description, function () {
|
2015-07-28 08:49:46 +02:00
|
|
|
txb = construct(f, false)
|
2015-03-03 11:50:46 +01:00
|
|
|
|
|
|
|
var tx
|
2015-08-07 08:41:24 +02:00
|
|
|
var network = NETWORKS[f.network]
|
2015-03-03 11:50:46 +01:00
|
|
|
|
2015-03-11 01:51:01 +01:00
|
|
|
f.inputs.forEach(function (input, i) {
|
2015-08-20 05:37:19 +02:00
|
|
|
var redeemScript = bscript.fromASM(input.redeemScript)
|
2015-03-03 11:50:46 +01:00
|
|
|
|
2015-03-11 01:51:01 +01:00
|
|
|
input.signs.forEach(function (sign) {
|
|
|
|
// rebuild the transaction each-time after the first
|
|
|
|
if (tx) {
|
|
|
|
// do we filter OP_0's beforehand?
|
|
|
|
if (sign.filterOP_0) {
|
|
|
|
var scriptSig = tx.ins[i].script
|
|
|
|
|
|
|
|
// ignore OP_0 on the front, ignore redeemScript
|
2015-08-20 05:37:19 +02:00
|
|
|
var signatures = bscript.decompile(scriptSig).slice(1, -1).filter(function (x) { return x !== ops.OP_0 })
|
2015-03-11 01:51:01 +01:00
|
|
|
|
|
|
|
// rebuild/replace the scriptSig without them
|
2015-08-20 05:37:19 +02:00
|
|
|
var replacement = bscript.scriptHashInput(bscript.multisigInput(signatures), redeemScript)
|
|
|
|
assert.strictEqual(bscript.toASM(replacement), sign.scriptSigFiltered)
|
2015-03-11 01:32:27 +01:00
|
|
|
|
2015-03-11 01:51:01 +01:00
|
|
|
tx.ins[i].script = replacement
|
|
|
|
}
|
|
|
|
|
|
|
|
// now import it
|
2015-08-07 08:41:24 +02:00
|
|
|
txb = TransactionBuilder.fromTransaction(tx, network)
|
2015-03-11 01:51:01 +01:00
|
|
|
}
|
2015-03-03 11:50:46 +01:00
|
|
|
|
2015-08-07 08:41:24 +02:00
|
|
|
var keyPair = ECPair.fromWIF(sign.keyPair, network)
|
2015-03-02 06:48:36 +01:00
|
|
|
txb.sign(i, keyPair, redeemScript, sign.hashType)
|
2015-03-03 11:50:46 +01:00
|
|
|
|
2015-03-11 01:51:01 +01:00
|
|
|
// update the tx
|
|
|
|
tx = txb.buildIncomplete()
|
2015-03-03 11:50:46 +01:00
|
|
|
|
2015-03-11 01:32:27 +01:00
|
|
|
// now verify the serialized scriptSig is as expected
|
2015-08-20 05:37:19 +02:00
|
|
|
assert.strictEqual(bscript.toASM(tx.ins[i].script), sign.scriptSig)
|
2015-03-03 11:50:46 +01:00
|
|
|
})
|
2015-03-11 01:51:01 +01:00
|
|
|
})
|
2015-03-03 11:50:46 +01:00
|
|
|
|
|
|
|
tx = txb.build()
|
2015-05-07 03:29:20 +02:00
|
|
|
assert.strictEqual(tx.toHex(), f.txHex)
|
2015-03-03 11:50:46 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2015-05-28 22:36:41 +02:00
|
|
|
describe('multisig edge case', function () {
|
2015-06-23 08:09:14 +02:00
|
|
|
it('should handle badly pre-filled OP_0s', function () {
|
2015-08-07 08:55:13 +02:00
|
|
|
var lameTx = Transaction.fromHex('0100000001cff58855426469d0ef16442ee9c644c4fb13832467bcbc3173168a7916f0714900000000fd16010000483045022100daf0f4f3339d9fbab42b098045c1e4958ee3b308f4ae17be80b63808558d0adb02202f07e3d1f79dc8da285ae0d7f68083d769c11f5621ebd9691d6b48c0d4283d7d014cc952410479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b84104c6047f9441ed7d6d3045406e95c07cd85c778e4b8cef3ca7abac09b95c709ee51ae168fea63dc339a3c58419466ceaeef7f632653266d0e1236431a950cfe52a4104f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e67253aeffffffff01e8030000000000001976a914aa4d7985c57e011a8b3dd8e0e5a73aaef41629c588ac00000000')
|
|
|
|
var network = NETWORKS.testnet
|
|
|
|
|
|
|
|
txb = TransactionBuilder.fromTransaction(lameTx, network)
|
2015-05-28 22:36:41 +02:00
|
|
|
|
2015-08-20 05:37:19 +02:00
|
|
|
var redeemScript = bscript.fromASM('OP_2 0479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8 04c6047f9441ed7d6d3045406e95c07cd85c778e4b8cef3ca7abac09b95c709ee51ae168fea63dc339a3c58419466ceaeef7f632653266d0e1236431a950cfe52a 04f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e672 OP_3 OP_CHECKMULTISIG')
|
2015-05-28 22:36:41 +02:00
|
|
|
|
2015-08-07 08:55:13 +02:00
|
|
|
var keyPair = ECPair.fromWIF('91avARGdfge8E4tZfYLoxeJ5sGBdNJQH4kvjJoQFacbgx3cTMqe', network)
|
2015-05-28 22:36:41 +02:00
|
|
|
txb.sign(0, keyPair, redeemScript)
|
|
|
|
|
|
|
|
var tx = txb.build()
|
2015-06-23 08:09:14 +02:00
|
|
|
assert.equal(tx.toHex(), '0100000001cff58855426469d0ef16442ee9c644c4fb13832467bcbc3173168a7916f0714900000000fd5e0100483045022100daf0f4f3339d9fbab42b098045c1e4958ee3b308f4ae17be80b63808558d0adb02202f07e3d1f79dc8da285ae0d7f68083d769c11f5621ebd9691d6b48c0d4283d7d01483045022100a346c61738304eac5e7702188764d19cdf68f4466196729db096d6c87ce18cdd022018c0e8ad03054b0e7e235cda6bedecf35881d7aa7d94ff425a8ace7220f38af0014cc952410479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b84104c6047f9441ed7d6d3045406e95c07cd85c778e4b8cef3ca7abac09b95c709ee51ae168fea63dc339a3c58419466ceaeef7f632653266d0e1236431a950cfe52a4104f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e67253aeffffffff01e8030000000000001976a914aa4d7985c57e011a8b3dd8e0e5a73aaef41629c588ac00000000')
|
2015-05-28 22:36:41 +02:00
|
|
|
})
|
|
|
|
})
|
2014-06-16 08:05:31 +02:00
|
|
|
})
|