Transaction: now returns index of added input/output
This commit is contained in:
parent
4f995fcae1
commit
009fcb9b82
2 changed files with 20 additions and 6 deletions
test
|
@ -107,6 +107,11 @@ describe('Transaction', function() {
|
|||
verifyTransactionIn()
|
||||
})
|
||||
|
||||
it('returns an index', function() {
|
||||
assert.equal(tx.addInput(prevTx, 0), 0)
|
||||
assert.equal(tx.addInput(prevTx, 0), 1)
|
||||
})
|
||||
|
||||
function verifyTransactionIn() {
|
||||
assert.equal(tx.ins.length, 1)
|
||||
|
||||
|
@ -142,6 +147,13 @@ describe('Transaction', function() {
|
|||
verifyTransactionOut()
|
||||
})
|
||||
|
||||
it('returns an index', function() {
|
||||
var dest = '15mMHKL96tWAUtqF3tbVf99Z8arcmnJrr3'
|
||||
|
||||
assert.equal(tx.addOutput(dest, 40000), 0)
|
||||
assert.equal(tx.addOutput(dest, 40000), 1)
|
||||
})
|
||||
|
||||
function verifyTransactionOut() {
|
||||
assert.equal(tx.outs.length, 1)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue