integration: break up into more re-usable unspents

This commit is contained in:
Daniel Cousens 2016-10-13 17:33:55 +11:00 committed by Daniel Cousens
parent 52bcfe72be
commit b65e47bbae
2 changed files with 4 additions and 4 deletions
test/integration

View file

@ -11,7 +11,7 @@ describe('bitcoinjs-lib (advanced)', function () {
var keyPair = bitcoin.ECPair.makeRandom({ network: network })
var address = keyPair.getAddress()
blockchain.t.faucet(address, 2e4, function (err, unspent) {
blockchain.t.faucet(address, 5e4, function (err, unspent) {
if (err) return done(err)
var tx = new bitcoin.TransactionBuilder(network)
@ -20,7 +20,7 @@ describe('bitcoinjs-lib (advanced)', function () {
tx.addInput(unspent.txId, unspent.vout)
tx.addOutput(dataScript, 1000)
tx.addOutput(blockchain.t.RETURN, 1e4)
tx.addOutput(blockchain.t.RETURN, 4e4)
tx.sign(0, keyPair)
var txRaw = tx.build()