integration: break up into more re-usable unspents
This commit is contained in:
parent
52bcfe72be
commit
b65e47bbae
2 changed files with 4 additions and 4 deletions
|
@ -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()
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ describe('bitcoinjs-lib (basic)', function () {
|
|||
blockchain.t.faucetMany([
|
||||
{
|
||||
address: alicesAddress,
|
||||
value: 2e4
|
||||
value: 4e4
|
||||
},
|
||||
{
|
||||
address: bobsAddress,
|
||||
|
@ -83,7 +83,7 @@ describe('bitcoinjs-lib (basic)', function () {
|
|||
var tx = new bitcoin.TransactionBuilder(network)
|
||||
tx.addInput(unspents[0].txId, unspents[0].vout)
|
||||
tx.addInput(unspents[1].txId, unspents[1].vout)
|
||||
tx.addOutput(blockchain.t.RETURN, 1e4)
|
||||
tx.addOutput(blockchain.t.RETURN, 3e4)
|
||||
tx.addOutput('mvGVHWi6gbkBZZPaqBVRcxvKVPYd9r3fp7', 1e4)
|
||||
tx.sign(0, alice)
|
||||
tx.sign(1, bob)
|
||||
|
|
Loading…
Reference in a new issue