tests: Wallet test was not comprehensive
This commit is contained in:
parent
69dfd3204d
commit
c3f8869386
1 changed files with 5 additions and 3 deletions
|
@ -633,9 +633,11 @@ describe('Wallet', function() {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('skips change if it is not above dust threshold', function() {
|
it('skips change if it is not above dust threshold', function() {
|
||||||
var fee = 14570
|
var tx1 = wallet.createTx(to, value - 546)
|
||||||
var tx = wallet.createTx(to, value)
|
assert.equal(tx1.outs.length, 1)
|
||||||
assert.equal(tx.outs.length, 1)
|
|
||||||
|
var tx2 = wallet.createTx(to, value - 547)
|
||||||
|
assert.equal(tx2.outs.length, 2)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue